System.Reflection.MonoMethodInfo.get_retval_marshal C# (CSharp) 메소드

get_retval_marshal() 개인적인 메소드

private get_retval_marshal ( IntPtr handle ) : UnmanagedMarshal
handle IntPtr
리턴 UnmanagedMarshal
		static extern UnmanagedMarshal get_retval_marshal (IntPtr handle);

Usage Example

예제 #1
0
 internal static ParameterInfo GetReturnParameterInfo(MonoMethod method)
 {
     return(new ParameterInfo(MonoMethodInfo.GetReturnType(method.mhandle), method, MonoMethodInfo.get_retval_marshal(method.mhandle)));
 }