System.RuntimeMethodHandle.GetMethodInstantiation C# (CSharp) Method

GetMethodInstantiation() private method

private GetMethodInstantiation ( ) : System.RuntimeTypeHandle[]
return System.RuntimeTypeHandle[]
        internal extern RuntimeTypeHandle[] GetMethodInstantiation(); 

Usage Example

示例#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);
 }
All Usage Examples Of System.RuntimeMethodHandle::GetMethodInstantiation