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

◆ GetRuntimeEvent()

static ? EventInfo System.Reflection.RuntimeReflectionExtensions.GetRuntimeEvent ( [DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.PublicEvents)] this Type type,
string name )
inlinestatic

Definition at line 71 of file RuntimeReflectionExtensions.cs.

72 {
73 if (type == null)
74 {
75 throw new ArgumentNullException("type");
76 }
77 return type.GetEvent(name);
78 }

References System.type.