Terraria v1.4.4.9
Terraria source code documentation
All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Events Macros

◆ GetMethod() [1/3]

MethodInfo? System.Reflection.Module.GetMethod ( string name)
inlineinherited

Definition at line 112 of file Module.cs.

113 {
114 if (name == null)
115 {
116 throw new ArgumentNullException("name");
117 }
118 return GetMethodImpl(name, BindingFlags.Instance | BindingFlags.Static | BindingFlags.Public, null, CallingConventions.Any, null, null);
119 }
virtual ? MethodInfo GetMethodImpl(string name, BindingFlags bindingAttr, Binder? binder, CallingConventions callConvention, Type[]? types, ParameterModifier[]? modifiers)
Definition Module.cs:149

References System.Reflection.Module.GetMethodImpl().

Referenced by System.Reflection.Module.GetMethod().