16 lines
407 B
C#
16 lines
407 B
C#
using CelticCalendarCalculator.Model;
|
|
|
|
namespace CelticCalendarCalculator.Control {
|
|
public class Setup {
|
|
|
|
public Setup() {
|
|
DateTime dateTime = DateTime.UtcNow;
|
|
TimeZoneInfo currentTimezone = TimeZoneInfo.Local;
|
|
TimeSpan currentoffset = currentTimezone.GetUtcOffset(DateTime.UtcNow);
|
|
Config.timeOffset = currentoffset.Hours;
|
|
|
|
|
|
}
|
|
}
|
|
}
|