Appointment.HasDaylightSavingChanged C# (CSharp) Method

HasDaylightSavingChanged() public static method

public static HasDaylightSavingChanged ( DateTime dt, Location location ) : bool
dt DateTime
location Location
return bool
    public static bool HasDaylightSavingChanged(DateTime dt, Location location)
    {
        throw new NotImplementedException("Please implement the (static) Appointment.HasDaylightSavingChanged() method");
    }

Usage Example

コード例 #1
0
ファイル: TimeTests.cs プロジェクト: mikedamay/Exercism
 public void DalylightSavingChanged_london_active()
 {
     Assert.True(
         Appointment.HasDaylightSavingChanged(new DateTime(2019, 4, 1, 0, 0, 0),
                                              Location.London));
 }
All Usage Examples Of Appointment::HasDaylightSavingChanged