how to get dynamic timezone of system
How can i get my machine timezoneinfo dynamically? right now i am doing it by hard code timezone.
string indTimeZoneKey = "**India Standard Time**";
TimeZoneInfo ind开发者_StackOverflowTimeZone = TimeZoneInfo.FindSystemTimeZoneById(indTimeZoneKey);
You could use the Local
property of TimeZoneInfo.
精彩评论