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