When I use
ReadOnlyCollection timeZones = TimeZoneInfo.GetSystemTimeZones();
I get a list of timezones and it contains this timezone:
timeZone.DisplayName = (UTC+09:00) Yakutsk
timeZone.StandardName = Russia TZ 8 Standard Time ...
but I think timeZone.StandardName should be:
Yakutsk Standard Time
to perform the transition from one time zone to another. I use:
TimeZoneInfo timeInfo = TimeZoneInfo.FindSystemTimeZoneById(timeZone.StandardName);
and the following error occurs:
the time zone id 'Russia TZ 8 Standard Time was not found on the local computer
Please someone help me with…