C# में DateTime.IsDaylightSavingTime () विधि का उपयोग यह इंगित करने के लिए किया जाता है कि क्या डेटटाइम का यह उदाहरण वर्तमान समय क्षेत्र के लिए डेलाइट सेविंग टाइम रेंज के भीतर है।
सिंटैक्स
निम्नलिखित वाक्य रचना है -
public bool IsDaylightSavingTime ();
उदाहरण
आइए अब DateTime.IsDaylightSavingTime() विधि को लागू करने के लिए एक उदाहरण देखें -
using System; public class Demo { public static void Main() { DateTime d = new DateTime(2019, 10, 11, 7, 10, 40); bool res = d.IsDaylightSavingTime(); if (res) Console.WriteLine("TRUE: This instance of DateTime is within the daylight saving time range for the current time zone."); else Console.WriteLine("FALSE: This instance of DateTime is within the daylight saving time range for the current time zone."); } }
आउटपुट
यह निम्नलिखित आउटपुट देगा -
FALSE: This instance of DateTime is within the daylight saving time range for the current time zone.
उदाहरण
आइए अब DateTime.IsDaylightSavingTime() विधि को लागू करने के लिए एक और उदाहरण देखें -
using System; public class Demo { public static void Main() { DateTime d = DateTime.Now; bool res = d.IsDaylightSavingTime(); if (res) Console.WriteLine("TRUE: This instance of DateTime is within the daylight saving time range for the current time zone."); else Console.WriteLine("FALSE: This instance of DateTime is within the daylight saving time range for the current time zone."); } }
आउटपुट
यह निम्नलिखित आउटपुट देगा -
FALSE: This instance of DateTime is within the daylight saving time range for the current time zone.