8 references to IsNullableType
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (7)
Compilation\GetSemanticInfoTests.cs (2)
3330
Assert.True(gNullableType.
IsNullableType
(), "MNG parameter is not a nullable type?");
3396
Assert.True(gNullableType.
IsNullableType
(), "MNG parameter is not a nullable type?");
Symbols\TypeTests.cs (5)
1704
Assert.True(memType.
IsNullableType
());
1717
Assert.True(memType.
IsNullableType
());
1724
Assert.True(memType.
IsNullableType
());
1780
Assert.True(((ITypeSymbol)tinfo.Type).
IsNullableType
());
1784
Assert.True(((ITypeSymbol)tinfo.ConvertedType).
IsNullableType
());
Microsoft.CodeAnalysis.CSharp.Test.Utilities (1)
Extensions.cs (1)
728
return type.
IsNullableType
() ? type.GetNullableUnderlyingType() : type;