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

◆ IsClass

bool System.Type.IsClass
getinherited

Definition at line 183 of file Type.cs.

184 {
185 get
186 {
187 if ((GetAttributeFlagsImpl() & TypeAttributes.ClassSemanticsMask) == 0)
188 {
189 return !IsValueType;
190 }
191 return false;
192 }
193 }
bool IsValueType
Definition Type.cs:234
TypeAttributes GetAttributeFlagsImpl()

Referenced by System.DefaultBinder.BindToField(), and System.Dynamic.Utils.TypeUtils.StrictHasReferenceConversionTo().