GetMethodInstantiation() private method

private GetMethodInstantiation ( ) : System.RuntimeTypeHandle[]
return System.RuntimeTypeHandle[]
コード例 #1
0
 internal static Type[] GetMethodInstantiationPublic(IRuntimeMethodInfo method)
 {
     RuntimeType[] result = null;
     RuntimeMethodHandle.GetMethodInstantiation(RuntimeMethodHandle.EnsureNonNullMethodInfo(method).Value, JitHelpers.GetObjectHandleOnStack <RuntimeType[]>(ref result), false);
     GC.KeepAlive(method);
     return(result);
 }
コード例 #2
0
 internal static RuntimeType[] GetMethodInstantiationInternal(IRuntimeMethodInfo method)
 {
     RuntimeType[] o = (RuntimeType[])null;
     RuntimeMethodHandle.GetMethodInstantiation(RuntimeMethodHandle.EnsureNonNullMethodInfo(method).Value, JitHelpers.GetObjectHandleOnStack <RuntimeType[]>(ref o), true);
     GC.KeepAlive((object)method);
     return(o);
 }
コード例 #3
0
 internal static RuntimeType[] GetMethodInstantiationInternal(RuntimeMethodHandleInternal method)
 {
     RuntimeType[] result = null;
     RuntimeMethodHandle.GetMethodInstantiation(method, JitHelpers.GetObjectHandleOnStack <RuntimeType[]>(ref result), true);
     return(result);
 }