CSharp examples for System:DateTime UTC
DateTime To Utc Time
using System.Configuration; using System;/*from w w w . ja v a 2s. c o m*/ public class Main{ public static DateTime ToUtcTime(this DateTime dt) { var tzi = TimeZoneInfo.FindSystemTimeZoneById(timeZoneId); return TimeZoneInfo.ConvertTimeToUtc(dt, tzi); } }