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

◆ GetRuntimeField()

static ? FieldInfo System.Reflection.RuntimeReflectionExtensions.GetRuntimeField ( [DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.PublicFields)] this Type type,
string name )
inlinestatic

Definition at line 44 of file RuntimeReflectionExtensions.cs.

45 {
46 if (type == null)
47 {
48 throw new ArgumentNullException("type");
49 }
50 return type.GetField(name);
51 }

References System.type.