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