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

◆ GetPropertyInfo()

static PropertyInfo System.RuntimeType.GetPropertyInfo ( RuntimeType reflectedType,
int tkProperty )
inlinestaticprivate

Definition at line 1787 of file RuntimeType.cs.

1788 {
1789 RuntimePropertyInfo[] propertyList = reflectedType.Cache.GetPropertyList(MemberListType.All, null);
1791 {
1792 if (runtimePropertyInfo.MetadataToken == tkProperty)
1793 {
1794 return runtimePropertyInfo;
1795 }
1796 }
1797 throw new SystemException();
1798 }