private string FormatLocalDateLong( LocalDate localDate )
=> localDate
.ToString( "dd.MM.yyyy", _ruCulture )
.FormatResolvedValues();
public static string FormatResolvedValues( this string localDate )
=> localDate.EndsWith( "9999" )
? "/"
: localDate;
private string FormatLocalDateLong( LocalDate localDate )
=> localDate
.ToString( "dd.MM.yyyy", _ruCulture )
.FormatResolvedValues();
public static string FormatResolvedValues( this string localDate )
=> localDate.EndsWith( "9999" )
? "/"
: localDate;