public static void Main()
DateTime theDate = new DateTime(2015,11,09,10,00,00);
TimeZoneInfo tzi = TimeZoneInfo.FindSystemTimeZoneById("Central European Standard Time");
bool isCurrentlyDaylightSavings = tzi.IsDaylightSavingTime(theDate);
Console.WriteLine(isCurrentlyDaylightSavings);