I am using C#. I need to get the local time zone info for the person running a web application.
I was wondering if:
TimeZoneInfo tzinfo = TimeZoneInfo.Local;
TimeZoneInfo.ConvertTimeFromUtc(result.DueDate.Value, tzinfo);
is appropriate. Again depending on what time zone the person running the application is, I would like that to be reflected.