GetMethodInstantiation() 개인적인 메소드

private GetMethodInstantiation ( ) : System.RuntimeTypeHandle[]
리턴 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);
 }