2 references to FormatDateTimeValueCore
Microsoft.AspNetCore.Components (2)
BindConverter.cs (2)
326
public static string FormatValue(DateTime value, CultureInfo? culture = null) =>
FormatDateTimeValueCore
(value, format: null, culture);
338
public static string FormatValue(DateTime value, [StringSyntax(StringSyntaxAttribute.DateTimeFormat)] string format, CultureInfo? culture = null) =>
FormatDateTimeValueCore
(value, format, culture);