Implemented interface member:
method
ToString
System.IFormattable.ToString(System.String, System.IFormatProvider)
3 references to ToString
Microsoft.AspNetCore.Components.Tests (1)
BindConverterTest.cs (1)
232var expected = value.ToString("HH:mm", CultureInfo.InvariantCulture);
System.ComponentModel.TypeConverter (1)
System\ComponentModel\TimeOnlyConverter.cs (1)
88return timeOnly.ToString(culture.DateTimeFormat.ShortTimePattern, culture);
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\TimeOnly.cs (1)
899public string ToString([StringSyntax(StringSyntaxAttribute.TimeOnlyFormat)] string? format) => ToString(format, null);