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