3 references to s_nullableDisplayFormat
Microsoft.CodeAnalysis.Features (3)
QuickInfo\QuickInfoUtilities.cs (3)
145
(NullableAnnotation.None, _) => string.Format(FeaturesResources._0_is_not_nullable_aware, symbol.ToDisplayString(
s_nullableDisplayFormat
)),
146
(_, NullableFlowState.MaybeNull) => string.Format(FeaturesResources._0_may_be_null_here, symbol.ToDisplayString(
s_nullableDisplayFormat
)),
147
(_, NullableFlowState.NotNull) => string.Format(FeaturesResources._0_is_not_null_here, symbol.ToDisplayString(
s_nullableDisplayFormat
)),