System.Reflection.MonoMethodInfo.get_retval_marshal C# (CSharp) Method

get_retval_marshal() private method

private get_retval_marshal ( IntPtr handle ) : UnmanagedMarshal
handle IntPtr
return UnmanagedMarshal
		static extern UnmanagedMarshal get_retval_marshal (IntPtr handle);

Usage Example

 internal static ParameterInfo GetReturnParameterInfo(MonoMethod method)
 {
     return(new ParameterInfo(MonoMethodInfo.GetReturnType(method.mhandle), method, MonoMethodInfo.get_retval_marshal(method.mhandle)));
 }