4 references to Classification
System.Private.CoreLib (4)
System\Reflection\Runtime\TypeInfos\RuntimeTypeInfo.cs (4)
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);