9 references to SpecialType
Microsoft.CodeAnalysis (9)
MetadataReader\MetadataDecoder.cs (6)
487if (requireShortForm && typeSymbol.SpecialType.HasShortFormSignatureEncoding()) 1010if (type.SpecialType == SpecialType.System_Decimal) 1014else if (type.SpecialType == SpecialType.System_DateTime) 1040if (GetEnumUnderlyingType(type)?.SpecialType != specialType) 1373typeCode = underlyingType.SpecialType.ToSerializationType(); 1424var result = type.SpecialType.ToSerializationTypeOrInvalid();
Symbols\INamedTypeSymbolInternal.cs (1)
43switch (type.SpecialType)
Symbols\TypedConstant.cs (2)
143if (_type!.SpecialType == specialType || (_type.TypeKind == TypeKind.Enum && specialType == SpecialType.System_Enum)) 162switch (type.SpecialType)