3 references to s_nullableDisplayFormat
Microsoft.CodeAnalysis.CSharp.Features (3)
QuickInfo\CSharpSemanticQuickInfoProvider.cs (3)
151
(NullableAnnotation.None, _) => string.Format(FeaturesResources._0_is_not_nullable_aware, symbol.ToDisplayString(
s_nullableDisplayFormat
)),
152
(_, NullableFlowState.MaybeNull) => string.Format(FeaturesResources._0_may_be_null_here, symbol.ToDisplayString(
s_nullableDisplayFormat
)),
153
(_, NullableFlowState.NotNull) => string.Format(FeaturesResources._0_is_not_null_here, symbol.ToDisplayString(
s_nullableDisplayFormat
)),