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

◆ GetProperty() [4/7]

PropertyInfo? System.Type.GetProperty ( string name,
Type? returnType )
inlineinherited

Definition at line 832 of file Type.cs.

833 {
834 if (name == null)
835 {
836 throw new ArgumentNullException("name");
837 }
838 return GetPropertyImpl(name, BindingFlags.Instance | BindingFlags.Static | BindingFlags.Public, null, returnType, null, null);
839 }
PropertyInfo? GetPropertyImpl(string name, BindingFlags bindingAttr, Binder? binder, Type? returnType, Type[]? types, ParameterModifier[]? modifiers)

References System.Type.GetPropertyImpl().