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

◆ GetMethodInternal()

MethodInfo System.Reflection.RuntimeModule.GetMethodInternal ( string name,
BindingFlags bindingAttr,
Binder binder,
CallingConventions callConvention,
Type[] types,
ParameterModifier[] modifiers )
inlinepackageinherited

Definition at line 369 of file RuntimeModule.cs.

370 {
371 if (RuntimeType == null)
372 {
373 return null;
374 }
375 if (types == null)
376 {
377 return RuntimeType.GetMethod(name, bindingAttr);
378 }
380 }
MethodInfo? GetMethod(string name)
Definition Type.cs:675

References System.Type.GetMethod().

Referenced by System.Reflection.RuntimeModule.GetMethodImpl(), and System.Reflection.Emit.ModuleBuilder.GetMethodImpl().