m
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System
|
||||
{
|
||||
/// <summary>Specifies whether a <see cref="T:System.DateTime" /> object represents a local time, a Coordinated Universal Time (UTC), or is not specified as either local time or UTC.</summary>
|
||||
// Token: 0x020000D7 RID: 215
|
||||
[Token(Token = "0x20000D7")]
|
||||
[ComVisible(true)]
|
||||
[Serializable]
|
||||
public enum DateTimeKind
|
||||
{
|
||||
/// <summary>The time represented is not specified as either local time or Coordinated Universal Time (UTC).</summary>
|
||||
// Token: 0x04000319 RID: 793
|
||||
[Token(Token = "0x4000319")]
|
||||
Unspecified,
|
||||
/// <summary>The time represented is UTC.</summary>
|
||||
// Token: 0x0400031A RID: 794
|
||||
[Token(Token = "0x400031A")]
|
||||
Utc,
|
||||
/// <summary>The time represented is local time.</summary>
|
||||
// Token: 0x0400031B RID: 795
|
||||
[Token(Token = "0x400031B")]
|
||||
Local
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user