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

◆ GetRuntimeProperty()

static ? PropertyInfo System.Reflection.RuntimeReflectionExtensions.GetRuntimeProperty ( [DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.PublicProperties)] this Type type,
string name )
inlinestatic

Definition at line 62 of file RuntimeReflectionExtensions.cs.

63 {
64 if (type == null)
65 {
66 throw new ArgumentNullException("type");
67 }
68 return type.GetProperty(name);
69 }

References System.type.