9 references to TryFormatInvariantG
System.Private.CoreLib (9)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Buffers\Text\Utf8Formatter\Utf8Formatter.Date.cs (3)
37return DateTimeFormat.TryFormatInvariantG(value.DateTime, value.Offset, destination, out bytesWritten); 52return DateTimeFormat.TryFormatInvariantG(value.DateTime, NullOffset, destination, out bytesWritten); 95return DateTimeFormat.TryFormatInvariantG(value, NullOffset, destination, out bytesWritten);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Globalization\DateTimeFormat.cs (6)
1000TryFormatInvariantG(dateTime, offset, new Span<char>(ref str.GetRawStringData(), str.Length), out int charsWritten); 1019TryFormatInvariantG(dateTime, offset, new Span<char>(ref str.GetRawStringData(), str.Length), out int charsWritten); 1079TryFormatInvariantG(dateTime, offset, new Span<char>(ref str.GetRawStringData(), str.Length), out charsWritten); 1126return TryFormatInvariantG(dateTime, offset, destination, out charsWritten); 1142return TryFormatInvariantG(dateTime, offset, destination, out charsWritten); 1185return TryFormatInvariantG(dateTime, offset, destination, out charsWritten);