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