4 references to Classification
System.Private.CoreLib (4)
System\Reflection\Runtime\TypeInfos\RuntimeTypeInfo.cs (4)
555
public bool IsPrimitive => (
Classification
& TypeClassification.IsPrimitive) != 0;
557
public bool IsValueType => (
Classification
& TypeClassification.IsValueType) != 0;
559
public bool IsEnum => 0 != (
Classification
& TypeClassification.IsEnum);
645
return 0 != (
Classification
& TypeClassification.IsDelegate);