using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System
{
/// Represents a time zone.
// Token: 0x0200019D RID: 413
[Token(Token = "0x200019D")]
[ComVisible(true)]
[Serializable]
public abstract class TimeZone
{
/// Initializes a new instance of the class.
// Token: 0x06001074 RID: 4212 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001074")]
[Address(RVA = "0x3F5100", Offset = "0x3F3F00", VA = "0x1803F5100")]
protected TimeZone()
{
}
/// Gets the time zone of the current computer.
/// A object that represents the current local time zone.
// Token: 0x1700018B RID: 395
// (get) Token: 0x06001075 RID: 4213 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x1700018B")]
public static TimeZone CurrentTimeZone
{
[Token(Token = "0x6001075")]
[Address(RVA = "0x1DB6400", Offset = "0x1DB5200", VA = "0x181DB6400")]
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: 0x06001076 RID: 4214
[Token(Token = "0x6001076")]
[Address(Slot = "4")]
public abstract TimeSpan GetUtcOffset(DateTime time);
// Token: 0x0400086A RID: 2154
[Token(Token = "0x400086A")]
private static TimeZone currentTimeZone;
// Token: 0x0400086B RID: 2155
[Token(Token = "0x400086B")]
[NonSerialized]
private static object tz_lock;
// Token: 0x0400086C RID: 2156
[Token(Token = "0x400086C")]
[NonSerialized]
private static long timezone_check;
}
}