Base:
property
SpecialType
Microsoft.CodeAnalysis.CSharp.Symbols.TypeSymbol.SpecialType
8 references to SpecialType
Microsoft.CodeAnalysis.CSharp (8)
Symbols\Metadata\PE\PEModuleSymbol.cs (1)
492
if (keepLookingForDeclaredCorTypes && type.
SpecialType
!= SpecialType.None)
Symbols\Metadata\PE\PENamedTypeSymbol.cs (7)
1779
if (this.
SpecialType
!= SpecialType.System_Enum)
1895
if (this.
SpecialType
== Microsoft.CodeAnalysis.SpecialType.None)
1902
isOrdinaryStruct = (this.
SpecialType
== Microsoft.CodeAnalysis.SpecialType.System_Nullable_T);
1949
var isOrdinaryEmbeddableStruct = (this.TypeKind == TypeKind.Struct) && (this.
SpecialType
== Microsoft.CodeAnalysis.SpecialType.None) && this.ContainingAssembly.IsLinked;
2091
else if (TypeKind == TypeKind.Class &&
SpecialType
!= SpecialType.System_Enum)
2493
Debug.Assert(this.
SpecialType
== SpecialType.System_IntPtr || this.
SpecialType
== SpecialType.System_UIntPtr);