वर्तमान डेटटाइम ऑब्जेक्ट के मान को कोऑर्डिनेटेड यूनिवर्सल टाइम (UTC) में बदलने के लिए, कोड इस प्रकार है -
उदाहरण
using System; public class Demo { public static void Main() { DateTime d = new DateTime(2019, 12, 11, 7, 11, 25); Console.WriteLine("Date = {0}", d); DateTime res = d.ToUniversalTime(); Console.WriteLine("String representation = {0}", res); } }
आउटपुट
यह निम्नलिखित आउटपुट देगा -
Date = 11/11/2019 7:11:25 AM String representation = 11/11/2019 7:11:25 AM
उदाहरण
आइए अब एक और उदाहरण देखें -
using System; public class Demo { public static void Main() { DateTime localDate, universalDate; String str = "11/11/2019 4:10:55"; localDate = DateTime.Parse(str); universalDate = localDate.ToUniversalTime(); Console.WriteLine("Local time = {0} ", localDate); Console.WriteLine("Universal time = {0} ", universalDate); } }
आउटपुट
यह निम्नलिखित आउटपुट देगा -
Local time = 11/11/2019 4:10:55 AM Universal time = 11/11/2019 4:10:55 AM