C#
 Computer >> コンピューター >  >> プログラミング >> C#

C#のDateTime.IsDaylightSavingTime()メソッド


C#のDateTime.IsDaylightSavingTime()メソッドは、DateTimeのこのインスタンスが現在のタイムゾーンの夏時間の範囲内にあるかどうかを示すために使用されます。

構文

以下は構文です-

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.

  1. C#のDateTime.AddHours()メソッド

    C#のDateTime.AddHours()メソッドは、指定された時間数をこのインスタンスの値に追加するために使用されます。このメソッドは新しいDateTimeを返します。 構文 以下は構文です- public DateTime AddHours (double hrs); 上記のhrsは、追加する時間数です。時間を引くには、値を負にすることができます。 例 DateTime.AddHours()メソッドを実装する例を見てみましょう using System; public class Demo {    public static void Main(){ &nbs

  2. C#のDateTime.AddDays()メソッド

    C#のDateTime.AddDays()メソッドは、指定された日数をこのインスタンスの値に追加するために使用されます。このメソッドは新しいDateTimeを返します。 構文 以下は構文です- public DateTime AddDays (double days); 上記のパラメータdaysは、追加される日数です。減算するには、負の値を加算します。 例 ここで、DateTime.AddDays()メソッドを実装する例を見てみましょう- using System; public class Demo {    public static void Main(){ &