13 references to TypeClassification
System.Private.CoreLib (13)
System\Reflection\Runtime\TypeInfos\RuntimeTypeInfo.cs (13)
555public bool IsPrimitive => (Classification & TypeClassification.IsPrimitive) != 0; 557public bool IsValueType => (Classification & TypeClassification.IsValueType) != 0; 559public bool IsEnum => 0 != (Classification & TypeClassification.IsEnum); 645return 0 != (Classification & TypeClassification.IsDelegate); 793private TypeClassification Classification 835TypeClassification classification = TypeClassification.Computed; 843classification |= TypeClassification.IsEnum | TypeClassification.IsValueType; 845classification |= TypeClassification.IsDelegate; 848classification |= TypeClassification.IsValueType; 850classification |= TypeClassification.IsPrimitive; 869private volatile TypeClassification _lazyClassification;