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

◆ MemberType

Type System.Runtime.Serialization.DataMember.CriticalHelper.MemberType
getpackage

Definition at line 108 of file DataMember.cs.

109 {
110 get
111 {
112 if (_memberType == null)
113 {
115 if (fieldInfo != null)
116 {
117 _memberType = fieldInfo.FieldType;
118 }
119 else
120 {
121 _memberType = ((PropertyInfo)MemberInfo).PropertyType;
122 }
123 }
124 return _memberType;
125 }
126 }