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

◆ GetRuntimeMethod()

static ? MethodInfo System.Reflection.RuntimeReflectionExtensions.GetRuntimeMethod ( [DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.PublicMethods)] this Type type,
string name,
Type[] parameters )
inlinestatic

Definition at line 53 of file RuntimeReflectionExtensions.cs.

54 {
55 if (type == null)
56 {
57 throw new ArgumentNullException("type");
58 }
59 return type.GetMethod(name, parameters);
60 }

References System.type.