NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Marshal.NumParamBytes

Calculate the number of bytes required to hold the parameters for the specified method.

[Visual Basic]
Public Shared Function NumParamBytes( _
   ByVal m As MethodInfo _
) As Integer
[C#]
public static int NumParamBytes(
   MethodInfo m
);
[C++]
public: static int NumParamBytes(
   MethodInfo* m
);
[JScript]
public static function NumParamBytes(
   m : MethodInfo
) : int;

Parameters

m
Method to be checked.

Return Value

Number of bytes required.

See Also

Marshal Class | Marshal Members | System.Runtime.InteropServices Namespace