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

GetReturnType() static private method

static private GetReturnType ( IntPtr handle ) : Type
handle IntPtr
return Type
		internal static Type GetReturnType (IntPtr handle)
		{
			return GetMethodInfo (handle).ret;
		}

Usage Example

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