7 references to IsNullable
Microsoft.CodeAnalysis.CodeStyle (3)
ITypeSymbolExtensions.cs (1)
637if (type.IsNullable(out var underlyingType))
PopulateSwitchExpressionHelpers.cs (1)
26switchExpressionType = switchExpressionType.IsNullable(out var underlyingType) ? underlyingType : switchExpressionType;
PopulateSwitchStatementHelpers.cs (1)
55switchExpressionType = switchExpressionType.IsNullable(out var underlyingType) ? underlyingType : switchExpressionType;
Microsoft.CodeAnalysis.CodeStyle.Fixes (1)
AbstractPopulateSwitchCodeFixProvider.cs (1)
167if (enumType.IsNullable(out var underlyingType))
Microsoft.CodeAnalysis.CSharp.CodeStyle (1)
CastSimplifier.cs (1)
880if (castSideType.IsNullable(out var underlyingType) && Equals(underlyingType, castedExpressionType))
Microsoft.CodeAnalysis.CSharp.CodeStyle.Fixes (2)
CSharpTypeInferenceService.TypeInferrer.cs (1)
1134return leftTypes.Select(x => x.InferredType.IsNullable(out var underlying)
ExpressionGenerator.cs (1)
64if (type.IsNullable(out var underlyingType))