3 references to GetNullableUnderlyingType
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (2)
Symbols\TypeTests.cs (2)
1708
Assert.Equal(TypeKind.Enum, memType.
GetNullableUnderlyingType
().TypeKind);
1785
Assert.Same(comp.GetSpecialType(SpecialType.System_Decimal), ((ITypeSymbol)tinfo.ConvertedType).
GetNullableUnderlyingType
());
Microsoft.CodeAnalysis.CSharp.Test.Utilities (1)
Extensions.cs (1)
728
return type.IsNullableType() ? type.
GetNullableUnderlyingType
() : type;