webMethods Microsoft Package 9.0 | webMethods Package for Microsoft .NET Documentation | webMethods Package for Microsoft .NET Client API Programmer’s Documentation | Invoking a Service using Visual Studio | Generating a C# Client Code in Visual Studio | Populate the Service Inputs (Generated Code)
 
Populate the Service Inputs (Generated Code)
The fourth stage of the code creates input data variables:
// create the Concat service object
//(created by the Add-in for the pub.string:concat service)
Concat concatService = new Concat();
// populate the inputs
concatService.in_inString1 = string1;
concatService.in_inString2 = string2;