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