C# (.Net)

Top  Previous  Next

When calling Crash Magic SOAP functions from C#, the following calling conventions are required:

All "var" parameters, or "pass by reference" calls, indicated in this documentation by preceding the variable name with a "&" must be treated as "ref" parameters in C#. This means that if a parameter is documented as &ErrorMsg, it must be initialized and used as shown:
string lVersion = "";
string lErrorMsg = "";
VersionNH( ref lVersion, ref lErrorMsg );