public static void SetYears(int delta) { SafeNativeMethods.SystemTime time = new SafeNativeMethods.SystemTime(); SafeNativeMethods.GetSystemTime(ref time); Debug.Assert(delta <short.MaxValue && delta> short.MinValue); time.wYear += (short)delta; SafeNativeMethods.SetSystemTime(ref time); }
public static int GetCurrentYear() { SafeNativeMethods.SystemTime time = new SafeNativeMethods.SystemTime(); SafeNativeMethods.GetSystemTime(ref time); return(time.wYear); }