using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System
{
/// Represents a time zone.
// Token: 0x020001A4 RID: 420
[Token(Token = "0x20001A4")]
[ComVisible(true)]
[Serializable]
public abstract class TimeZone
{
/// Initializes a new instance of the class.
// Token: 0x060010AA RID: 4266 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60010AA")]
[Address(RVA = "0x412370", Offset = "0x411370", VA = "0x180412370")]
protected TimeZone()
{
}
/// Gets the time zone of the current computer.
/// A object that represents the current local time zone.
// Token: 0x17000192 RID: 402
// (get) Token: 0x060010AB RID: 4267 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x17000192")]
public static TimeZone CurrentTimeZone
{
[Token(Token = "0x60010AB")]
[Address(RVA = "0xF7B600", Offset = "0xF7A600", VA = "0x180F7B600")]
get
{
return null;
}
}
/// Returns the Coordinated Universal Time (UTC) offset for the specified local time.
/// A date and time value.
/// The Coordinated Universal Time (UTC) offset from .
// Token: 0x060010AC RID: 4268
[Token(Token = "0x60010AC")]
[Address(Slot = "4")]
public abstract TimeSpan GetUtcOffset(DateTime time);
// Token: 0x04000874 RID: 2164
[Token(Token = "0x4000874")]
private static TimeZone currentTimeZone;
// Token: 0x04000875 RID: 2165
[Token(Token = "0x4000875")]
[NonSerialized]
private static object tz_lock;
// Token: 0x04000876 RID: 2166
[Token(Token = "0x4000876")]
[NonSerialized]
private static long timezone_check;
}
}