using System.Globalization;
public static void Main()
DateTime now = new DateTime(2020, 05, 20);
Console.WriteLine($"{now}");
FormattableString nowStr1 = $"{now}";
Console.WriteLine(nowStr1.ToString(new CultureInfo("ro-RO")));
Console.WriteLine($"{now:dd.MMMM.yyyy}");
FormattableString nowStr2 = $"{now:dd.MMMM.yyyy}";
Console.WriteLine(nowStr2.ToString(new CultureInfo("ro-RO")));
Console.WriteLine(FormattableString.CurrentCulture($"{now:dd.MMMM.yyyy}"));
Console.WriteLine(FormattableString.Invariant($"{now:dd.MMMM.yyyy}"));