scripts
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
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>
|
||||
/// <filterpriority>2</filterpriority>
|
||||
// Token: 0x02000655 RID: 1621
|
||||
[ComVisible(true)]
|
||||
[Serializable]
|
||||
public enum DateTimeKind
|
||||
{
|
||||
/// <summary>The time represented is not specified as either local time or Coordinated Universal Time (UTC).</summary>
|
||||
// Token: 0x040018B3 RID: 6323
|
||||
Unspecified,
|
||||
/// <summary>The time represented is UTC.</summary>
|
||||
// Token: 0x040018B4 RID: 6324
|
||||
Utc,
|
||||
/// <summary>The time represented is local time.</summary>
|
||||
// Token: 0x040018B5 RID: 6325
|
||||
Local
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user