Appointment.HasDaylightSavingChanged C# (CSharp) Méthode

HasDaylightSavingChanged() public static méthode

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

Usage Example

Exemple #1
0
 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