5 overrides of FormatProvider
GetDocument.Insider (1)
Commands\GetDocumentCommandWorker.cs (1)
470
public override IFormatProvider
FormatProvider
=> System.Globalization.CultureInfo.InvariantCulture;
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\IO\StreamWriter.cs (1)
1023
public override IFormatProvider
FormatProvider
=> CultureInfo.InvariantCulture;
src\libraries\System.Private.CoreLib\src\System\IO\TextWriter.CreateBroadcasting.cs (1)
60
public override IFormatProvider
FormatProvider
=> _writers[0].FormatProvider;
src\libraries\System.Private.CoreLib\src\System\IO\TextWriter.cs (2)
813
public override IFormatProvider
FormatProvider
=> CultureInfo.InvariantCulture;
902
public override IFormatProvider
FormatProvider
=> _out.FormatProvider;
24 references to FormatProvider
Microsoft.CodeAnalysis.InteractiveHost (2)
Interactive\Core\InteractiveHost.Service.cs (2)
790
output.WriteLine(formatter.Format(diagnostic, output.
FormatProvider
as CultureInfo));
796
output.WriteLine(string.Format(output.
FormatProvider
, InteractiveHostResources.plus_additional_0_1, notShown, (notShown == 1) ? "error" : "errors"));
System.Private.CoreLib (22)
src\libraries\System.Private.CoreLib\src\System\IO\TextWriter.CreateBroadcasting.cs (2)
30
/// <see cref="Encoding"/> and <see cref="
FormatProvider
"/> will return the corresponding object from first writer
60
public override IFormatProvider FormatProvider => _writers[0].
FormatProvider
;
src\libraries\System.Private.CoreLib\src\System\IO\TextWriter.cs (20)
219
Write(value.ToString(
FormatProvider
));
229
Write(value.ToString(
FormatProvider
));
238
Write(value.ToString(
FormatProvider
));
248
Write(value.ToString(
FormatProvider
));
257
Write(value.ToString(
FormatProvider
));
266
Write(value.ToString(
FormatProvider
));
271
Write(value.ToString(
FormatProvider
));
297
Write(f.ToString(null,
FormatProvider
));
323
Write(string.Format(
FormatProvider
, format, arg0));
331
Write(string.Format(
FormatProvider
, format, arg0, arg1));
339
Write(string.Format(
FormatProvider
, format, arg0, arg1, arg2));
347
Write(string.Format(
FormatProvider
, format, arg));
357
Write(string.Format(
FormatProvider
, format, arg));
536
WriteLine(f.ToString(null,
FormatProvider
));
550
WriteLine(string.Format(
FormatProvider
, format, arg0));
558
WriteLine(string.Format(
FormatProvider
, format, arg0, arg1));
566
WriteLine(string.Format(
FormatProvider
, format, arg0, arg1, arg2));
574
WriteLine(string.Format(
FormatProvider
, format, arg));
584
WriteLine(string.Format(
FormatProvider
, format, arg));
902
public override IFormatProvider FormatProvider => _out.
FormatProvider
;