public static void Main()
var timeZoneInfo = TimeZoneInfo.FindSystemTimeZoneById("Europe/Moscow");
var endDateLocal = TimeZoneInfo.ConvertTimeFromUtc( DateTime.SpecifyKind(DateTime.UtcNow, DateTimeKind.Utc), timeZoneInfo);
var dateFormat = "dd.MM.yyyy HH:mm {0}";
Console.WriteLine(endDateLocal.ToString(dateFormat, " "));