Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ GetMethodFromHandle() [2/2]

static ? MethodBase System.Reflection.MethodBase.GetMethodFromHandle ( RuntimeMethodHandle handle,
RuntimeTypeHandle declaringType )
inlinestaticinherited

Definition at line 125 of file MethodBase.cs.

126 {
127 if (handle.IsNullHandle())
128 {
129 throw new ArgumentException(SR.Argument_InvalidHandle);
130 }
131 return RuntimeType.GetMethodBase(declaringType.GetRuntimeType(), handle.GetMethodInfo());
132 }

References System.SR.Argument_InvalidHandle, System.RuntimeType.GetMethodBase(), System.RuntimeTypeHandle.GetRuntimeType(), and System.handle.