1 implementation of EnumUnderlyingType
Microsoft.CodeAnalysis.CSharp (1)
Symbols\NamedTypeSymbol.cs (1)
1720
INamedTypeSymbolInternal INamedTypeSymbolInternal.
EnumUnderlyingType
4 references to EnumUnderlyingType
Microsoft.CodeAnalysis (3)
MetadataReader\MetadataDecoder.cs (1)
1419
if (type is INamedTypeSymbolInternal {
EnumUnderlyingType
: { } underlyingType })
Symbols\INamedTypeSymbolInternal.cs (2)
38
Debug.Assert(type.
EnumUnderlyingType
is not null);
39
type = type.
EnumUnderlyingType
;
Microsoft.CodeAnalysis.ExpressionEvaluator.ExpressionCompiler (1)
PDB\PdbHelpers.cs (1)
84
type = ((INamedTypeSymbolInternal)type).
EnumUnderlyingType
!;