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

◆ GetMethod() [2/3]

MethodInfo? System.Reflection.Module.GetMethod ( string name,
BindingFlags bindingAttr,
Binder? binder,
CallingConventions callConvention,
Type[] types,
ParameterModifier?[] modifiers )
inlineinherited

Definition at line 128 of file Module.cs.

129 {
130 if (name == null)
131 {
132 throw new ArgumentNullException("name");
133 }
134 if (types == null)
135 {
136 throw new ArgumentNullException("types");
137 }
138 for (int i = 0; i < types.Length; i++)
139 {
140 if (types[i] == null)
141 {
142 throw new ArgumentNullException("types");
143 }
144 }
146 }
virtual ? MethodInfo GetMethodImpl(string name, BindingFlags bindingAttr, Binder? binder, CallingConventions callConvention, Type[]? types, ParameterModifier[]? modifiers)
Definition Module.cs:149

References System.Reflection.Module.GetMethodImpl().