This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
+1832
View File
@@ -0,0 +1,1832 @@
using System;
using System.Globalization;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System
{
/// <summary>Represents an instant in time, typically expressed as a date and time of day.</summary>
// Token: 0x020000D6 RID: 214
[Token(Token = "0x20000D6")]
[Serializable]
[StructLayout(3)]
public struct DateTime : IComparable, IFormattable, IConvertible, ISerializable, IComparable<DateTime>, IEquatable<DateTime>
{
/// <summary>Initializes a new instance of the <see cref="T:System.DateTime" /> structure to a specified number of ticks.</summary>
/// <param name="ticks">A date and time expressed in the number of 100-nanosecond intervals that have elapsed since January 1, 0001 at 00:00:00.000 in the Gregorian calendar.</param>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="ticks" /> is less than <see cref="F:System.DateTime.MinValue" /> or greater than <see cref="F:System.DateTime.MaxValue" />.</exception>
// Token: 0x06000715 RID: 1813 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000715")]
[Address(RVA = "0xD6DB00", Offset = "0xD6CB00", VA = "0x180D6DB00")]
public DateTime(long ticks)
{
}
// Token: 0x06000716 RID: 1814 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000716")]
[Address(RVA = "0x593200", Offset = "0x592200", VA = "0x180593200")]
private DateTime(ulong dateData)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.DateTime" /> structure to a specified number of ticks and to Coordinated Universal Time (UTC) or local time.</summary>
/// <param name="ticks">A date and time expressed in the number of 100-nanosecond intervals that have elapsed since January 1, 0001 at 00:00:00.000 in the Gregorian calendar.</param>
/// <param name="kind">One of the enumeration values that indicates whether <paramref name="ticks" /> specifies a local time, Coordinated Universal Time (UTC), or neither.</param>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="ticks" /> is less than <see cref="F:System.DateTime.MinValue" /> or greater than <see cref="F:System.DateTime.MaxValue" />.</exception>
/// <exception cref="T:System.ArgumentException">
/// <paramref name="kind" /> is not one of the <see cref="T:System.DateTimeKind" /> values.</exception>
// Token: 0x06000717 RID: 1815 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000717")]
[Address(RVA = "0xD6DF20", Offset = "0xD6CF20", VA = "0x180D6DF20")]
public DateTime(long ticks, DateTimeKind kind)
{
}
// Token: 0x06000718 RID: 1816 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000718")]
[Address(RVA = "0xD6E580", Offset = "0xD6D580", VA = "0x180D6E580")]
internal DateTime(long ticks, DateTimeKind kind, bool isAmbiguousDst)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.DateTime" /> structure to the specified year, month, and day.</summary>
/// <param name="year">The year (1 through 9999).</param>
/// <param name="month">The month (1 through 12).</param>
/// <param name="day">The day (1 through the number of days in <paramref name="month" />).</param>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="year" /> is less than 1 or greater than 9999.
/// -or-
/// <paramref name="month" /> is less than 1 or greater than 12.
/// -or-
/// <paramref name="day" /> is less than 1 or greater than the number of days in <paramref name="month" />.</exception>
// Token: 0x06000719 RID: 1817 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000719")]
[Address(RVA = "0xD6EBC0", Offset = "0xD6DBC0", VA = "0x180D6EBC0")]
public DateTime(int year, int month, int day)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.DateTime" /> structure to the specified year, month, and day for the specified calendar.</summary>
/// <param name="year">The year (1 through the number of years in <paramref name="calendar" />).</param>
/// <param name="month">The month (1 through the number of months in <paramref name="calendar" />).</param>
/// <param name="day">The day (1 through the number of days in <paramref name="month" />).</param>
/// <param name="calendar">The calendar that is used to interpret <paramref name="year" />, <paramref name="month" />, and <paramref name="day" />.</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="calendar" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="year" /> is not in the range supported by <paramref name="calendar" />.
/// -or-
/// <paramref name="month" /> is less than 1 or greater than the number of months in <paramref name="calendar" />.
/// -or-
/// <paramref name="day" /> is less than 1 or greater than the number of days in <paramref name="month" />.</exception>
// Token: 0x0600071A RID: 1818 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600071A")]
[Address(RVA = "0xD6E2B0", Offset = "0xD6D2B0", VA = "0x180D6E2B0")]
public DateTime(int year, int month, int day, Calendar calendar)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.DateTime" /> structure to the specified year, month, day, hour, minute, and second.</summary>
/// <param name="year">The year (1 through 9999).</param>
/// <param name="month">The month (1 through 12).</param>
/// <param name="day">The day (1 through the number of days in <paramref name="month" />).</param>
/// <param name="hour">The hours (0 through 23).</param>
/// <param name="minute">The minutes (0 through 59).</param>
/// <param name="second">The seconds (0 through 59).</param>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="year" /> is less than 1 or greater than 9999.
/// -or-
/// <paramref name="month" /> is less than 1 or greater than 12.
/// -or-
/// <paramref name="day" /> is less than 1 or greater than the number of days in <paramref name="month" />.
/// -or-
/// <paramref name="hour" /> is less than 0 or greater than 23.
/// -or-
/// <paramref name="minute" /> is less than 0 or greater than 59.
/// -or-
/// <paramref name="second" /> is less than 0 or greater than 59.</exception>
// Token: 0x0600071B RID: 1819 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600071B")]
[Address(RVA = "0xD6E2F0", Offset = "0xD6D2F0", VA = "0x180D6E2F0")]
public DateTime(int year, int month, int day, int hour, int minute, int second)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.DateTime" /> structure to the specified year, month, day, hour, minute, second, and Coordinated Universal Time (UTC) or local time.</summary>
/// <param name="year">The year (1 through 9999).</param>
/// <param name="month">The month (1 through 12).</param>
/// <param name="day">The day (1 through the number of days in <paramref name="month" />).</param>
/// <param name="hour">The hours (0 through 23).</param>
/// <param name="minute">The minutes (0 through 59).</param>
/// <param name="second">The seconds (0 through 59).</param>
/// <param name="kind">One of the enumeration values that indicates whether <paramref name="year" />, <paramref name="month" />, <paramref name="day" />, <paramref name="hour" />, <paramref name="minute" /> and <paramref name="second" /> specify a local time, Coordinated Universal Time (UTC), or neither.</param>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="year" /> is less than 1 or greater than 9999.
/// -or-
/// <paramref name="month" /> is less than 1 or greater than 12.
/// -or-
/// <paramref name="day" /> is less than 1 or greater than the number of days in <paramref name="month" />.
/// -or-
/// <paramref name="hour" /> is less than 0 or greater than 23.
/// -or-
/// <paramref name="minute" /> is less than 0 or greater than 59.
/// -or-
/// <paramref name="second" /> is less than 0 or greater than 59.</exception>
/// <exception cref="T:System.ArgumentException">
/// <paramref name="kind" /> is not one of the <see cref="T:System.DateTimeKind" /> values.</exception>
// Token: 0x0600071C RID: 1820 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600071C")]
[Address(RVA = "0xD6E870", Offset = "0xD6D870", VA = "0x180D6E870")]
public DateTime(int year, int month, int day, int hour, int minute, int second, DateTimeKind kind)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.DateTime" /> structure to the specified year, month, day, hour, minute, and second for the specified calendar.</summary>
/// <param name="year">The year (1 through the number of years in <paramref name="calendar" />).</param>
/// <param name="month">The month (1 through the number of months in <paramref name="calendar" />).</param>
/// <param name="day">The day (1 through the number of days in <paramref name="month" />).</param>
/// <param name="hour">The hours (0 through 23).</param>
/// <param name="minute">The minutes (0 through 59).</param>
/// <param name="second">The seconds (0 through 59).</param>
/// <param name="calendar">The calendar that is used to interpret <paramref name="year" />, <paramref name="month" />, and <paramref name="day" />.</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="calendar" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="year" /> is not in the range supported by <paramref name="calendar" />.
/// -or-
/// <paramref name="month" /> is less than 1 or greater than the number of months in <paramref name="calendar" />.
/// -or-
/// <paramref name="day" /> is less than 1 or greater than the number of days in <paramref name="month" />.
/// -or-
/// <paramref name="hour" /> is less than 0 or greater than 23
/// -or-
/// <paramref name="minute" /> is less than 0 or greater than 59.
/// -or-
/// <paramref name="second" /> is less than 0 or greater than 59.</exception>
// Token: 0x0600071D RID: 1821 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600071D")]
[Address(RVA = "0xD6DB90", Offset = "0xD6CB90", VA = "0x180D6DB90")]
public DateTime(int year, int month, int day, int hour, int minute, int second, Calendar calendar)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.DateTime" /> structure to the specified year, month, day, hour, minute, second, and millisecond.</summary>
/// <param name="year">The year (1 through 9999).</param>
/// <param name="month">The month (1 through 12).</param>
/// <param name="day">The day (1 through the number of days in <paramref name="month" />).</param>
/// <param name="hour">The hours (0 through 23).</param>
/// <param name="minute">The minutes (0 through 59).</param>
/// <param name="second">The seconds (0 through 59).</param>
/// <param name="millisecond">The milliseconds (0 through 999).</param>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="year" /> is less than 1 or greater than 9999.
/// -or-
/// <paramref name="month" /> is less than 1 or greater than 12.
/// -or-
/// <paramref name="day" /> is less than 1 or greater than the number of days in <paramref name="month" />.
/// -or-
/// <paramref name="hour" /> is less than 0 or greater than 23.
/// -or-
/// <paramref name="minute" /> is less than 0 or greater than 59.
/// -or-
/// <paramref name="second" /> is less than 0 or greater than 59.
/// -or-
/// <paramref name="millisecond" /> is less than 0 or greater than 999.</exception>
// Token: 0x0600071E RID: 1822 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600071E")]
[Address(RVA = "0xD6E390", Offset = "0xD6D390", VA = "0x180D6E390")]
public DateTime(int year, int month, int day, int hour, int minute, int second, int millisecond)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.DateTime" /> structure to the specified year, month, day, hour, minute, second, millisecond, and Coordinated Universal Time (UTC) or local time.</summary>
/// <param name="year">The year (1 through 9999).</param>
/// <param name="month">The month (1 through 12).</param>
/// <param name="day">The day (1 through the number of days in <paramref name="month" />).</param>
/// <param name="hour">The hours (0 through 23).</param>
/// <param name="minute">The minutes (0 through 59).</param>
/// <param name="second">The seconds (0 through 59).</param>
/// <param name="millisecond">The milliseconds (0 through 999).</param>
/// <param name="kind">One of the enumeration values that indicates whether <paramref name="year" />, <paramref name="month" />, <paramref name="day" />, <paramref name="hour" />, <paramref name="minute" />, <paramref name="second" />, and <paramref name="millisecond" /> specify a local time, Coordinated Universal Time (UTC), or neither.</param>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="year" /> is less than 1 or greater than 9999.
/// -or-
/// <paramref name="month" /> is less than 1 or greater than 12.
/// -or-
/// <paramref name="day" /> is less than 1 or greater than the number of days in <paramref name="month" />.
/// -or-
/// <paramref name="hour" /> is less than 0 or greater than 23.
/// -or-
/// <paramref name="minute" /> is less than 0 or greater than 59.
/// -or-
/// <paramref name="second" /> is less than 0 or greater than 59.
/// -or-
/// <paramref name="millisecond" /> is less than 0 or greater than 999.</exception>
/// <exception cref="T:System.ArgumentException">
/// <paramref name="kind" /> is not one of the <see cref="T:System.DateTimeKind" /> values.</exception>
// Token: 0x0600071F RID: 1823 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600071F")]
[Address(RVA = "0xD6E970", Offset = "0xD6D970", VA = "0x180D6E970")]
public DateTime(int year, int month, int day, int hour, int minute, int second, int millisecond, DateTimeKind kind)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.DateTime" /> structure to the specified year, month, day, hour, minute, second, and millisecond for the specified calendar.</summary>
/// <param name="year">The year (1 through the number of years in <paramref name="calendar" />).</param>
/// <param name="month">The month (1 through the number of months in <paramref name="calendar" />).</param>
/// <param name="day">The day (1 through the number of days in <paramref name="month" />).</param>
/// <param name="hour">The hours (0 through 23).</param>
/// <param name="minute">The minutes (0 through 59).</param>
/// <param name="second">The seconds (0 through 59).</param>
/// <param name="millisecond">The milliseconds (0 through 999).</param>
/// <param name="calendar">The calendar that is used to interpret <paramref name="year" />, <paramref name="month" />, and <paramref name="day" />.</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="calendar" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="year" /> is not in the range supported by <paramref name="calendar" />.
/// -or-
/// <paramref name="month" /> is less than 1 or greater than the number of months in <paramref name="calendar" />.
/// -or-
/// <paramref name="day" /> is less than 1 or greater than the number of days in <paramref name="month" />.
/// -or-
/// <paramref name="hour" /> is less than 0 or greater than 23.
/// -or-
/// <paramref name="minute" /> is less than 0 or greater than 59.
/// -or-
/// <paramref name="second" /> is less than 0 or greater than 59.
/// -or-
/// <paramref name="millisecond" /> is less than 0 or greater than 999.</exception>
// Token: 0x06000720 RID: 1824 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000720")]
[Address(RVA = "0xD6E630", Offset = "0xD6D630", VA = "0x180D6E630")]
public DateTime(int year, int month, int day, int hour, int minute, int second, int millisecond, Calendar calendar)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.DateTime" /> structure to the specified year, month, day, hour, minute, second, millisecond, and Coordinated Universal Time (UTC) or local time for the specified calendar.</summary>
/// <param name="year">The year (1 through the number of years in <paramref name="calendar" />).</param>
/// <param name="month">The month (1 through the number of months in <paramref name="calendar" />).</param>
/// <param name="day">The day (1 through the number of days in <paramref name="month" />).</param>
/// <param name="hour">The hours (0 through 23).</param>
/// <param name="minute">The minutes (0 through 59).</param>
/// <param name="second">The seconds (0 through 59).</param>
/// <param name="millisecond">The milliseconds (0 through 999).</param>
/// <param name="calendar">The calendar that is used to interpret <paramref name="year" />, <paramref name="month" />, and <paramref name="day" />.</param>
/// <param name="kind">One of the enumeration values that indicates whether <paramref name="year" />, <paramref name="month" />, <paramref name="day" />, <paramref name="hour" />, <paramref name="minute" />, <paramref name="second" />, and <paramref name="millisecond" /> specify a local time, Coordinated Universal Time (UTC), or neither.</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="calendar" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="year" /> is not in the range supported by <paramref name="calendar" />.
/// -or-
/// <paramref name="month" /> is less than 1 or greater than the number of months in <paramref name="calendar" />.
/// -or-
/// <paramref name="day" /> is less than 1 or greater than the number of days in <paramref name="month" />.
/// -or-
/// <paramref name="hour" /> is less than 0 or greater than 23.
/// -or-
/// <paramref name="minute" /> is less than 0 or greater than 59.
/// -or-
/// <paramref name="second" /> is less than 0 or greater than 59.
/// -or-
/// <paramref name="millisecond" /> is less than 0 or greater than 999.</exception>
/// <exception cref="T:System.ArgumentException">
/// <paramref name="kind" /> is not one of the <see cref="T:System.DateTimeKind" /> values.</exception>
// Token: 0x06000721 RID: 1825 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000721")]
[Address(RVA = "0xD6DC80", Offset = "0xD6CC80", VA = "0x180D6DC80")]
public DateTime(int year, int month, int day, int hour, int minute, int second, int millisecond, Calendar calendar, DateTimeKind kind)
{
}
// Token: 0x06000722 RID: 1826 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000722")]
[Address(RVA = "0xD6E010", Offset = "0xD6D010", VA = "0x180D6E010")]
private DateTime(SerializationInfo info, StreamingContext context)
{
}
// Token: 0x170000A5 RID: 165
// (get) Token: 0x06000723 RID: 1827 RVA: 0x00006438 File Offset: 0x00004638
[Token(Token = "0x170000A5")]
internal long InternalTicks
{
[Token(Token = "0x6000723")]
[Address(RVA = "0xD6ED70", Offset = "0xD6DD70", VA = "0x180D6ED70")]
get
{
return 0L;
}
}
// Token: 0x170000A6 RID: 166
// (get) Token: 0x06000724 RID: 1828 RVA: 0x00006450 File Offset: 0x00004650
[Token(Token = "0x170000A6")]
private ulong InternalKind
{
[Token(Token = "0x6000724")]
[Address(RVA = "0xD6ED50", Offset = "0xD6DD50", VA = "0x180D6ED50")]
get
{
return 0UL;
}
}
/// <summary>Returns a new <see cref="T:System.DateTime" /> that adds the value of the specified <see cref="T:System.TimeSpan" /> to the value of this instance.</summary>
/// <param name="value">A positive or negative time interval.</param>
/// <returns>An object whose value is the sum of the date and time represented by this instance and the time interval represented by <paramref name="value" />.</returns>
/// <exception cref="T:System.ArgumentOutOfRangeException">The resulting <see cref="T:System.DateTime" /> is less than <see cref="F:System.DateTime.MinValue" /> or greater than <see cref="F:System.DateTime.MaxValue" />.</exception>
// Token: 0x06000725 RID: 1829 RVA: 0x00006468 File Offset: 0x00004668
[Token(Token = "0x6000725")]
[Address(RVA = "0xD6A780", Offset = "0xD69780", VA = "0x180D6A780")]
public DateTime Add(TimeSpan value)
{
return default(DateTime);
}
// Token: 0x06000726 RID: 1830 RVA: 0x00006480 File Offset: 0x00004680
[Token(Token = "0x6000726")]
[Address(RVA = "0xD6A790", Offset = "0xD69790", VA = "0x180D6A790")]
private DateTime Add(double value, int scale)
{
return default(DateTime);
}
/// <summary>Returns a new <see cref="T:System.DateTime" /> that adds the specified number of days to the value of this instance.</summary>
/// <param name="value">A number of whole and fractional days. The <paramref name="value" /> parameter can be negative or positive.</param>
/// <returns>An object whose value is the sum of the date and time represented by this instance and the number of days represented by <paramref name="value" />.</returns>
/// <exception cref="T:System.ArgumentOutOfRangeException">The resulting <see cref="T:System.DateTime" /> is less than <see cref="F:System.DateTime.MinValue" /> or greater than <see cref="F:System.DateTime.MaxValue" />.</exception>
// Token: 0x06000727 RID: 1831 RVA: 0x00006498 File Offset: 0x00004698
[Token(Token = "0x6000727")]
[Address(RVA = "0xD6A270", Offset = "0xD69270", VA = "0x180D6A270")]
public DateTime AddDays(double value)
{
return default(DateTime);
}
/// <summary>Returns a new <see cref="T:System.DateTime" /> that adds the specified number of hours to the value of this instance.</summary>
/// <param name="value">A number of whole and fractional hours. The <paramref name="value" /> parameter can be negative or positive.</param>
/// <returns>An object whose value is the sum of the date and time represented by this instance and the number of hours represented by <paramref name="value" />.</returns>
/// <exception cref="T:System.ArgumentOutOfRangeException">The resulting <see cref="T:System.DateTime" /> is less than <see cref="F:System.DateTime.MinValue" /> or greater than <see cref="F:System.DateTime.MaxValue" />.</exception>
// Token: 0x06000728 RID: 1832 RVA: 0x000064B0 File Offset: 0x000046B0
[Token(Token = "0x6000728")]
[Address(RVA = "0xD6A280", Offset = "0xD69280", VA = "0x180D6A280")]
public DateTime AddHours(double value)
{
return default(DateTime);
}
/// <summary>Returns a new <see cref="T:System.DateTime" /> that adds the specified number of milliseconds to the value of this instance.</summary>
/// <param name="value">A number of whole and fractional milliseconds. The <paramref name="value" /> parameter can be negative or positive. Note that this value is rounded to the nearest integer.</param>
/// <returns>An object whose value is the sum of the date and time represented by this instance and the number of milliseconds represented by <paramref name="value" />.</returns>
/// <exception cref="T:System.ArgumentOutOfRangeException">The resulting <see cref="T:System.DateTime" /> is less than <see cref="F:System.DateTime.MinValue" /> or greater than <see cref="F:System.DateTime.MaxValue" />.</exception>
// Token: 0x06000729 RID: 1833 RVA: 0x000064C8 File Offset: 0x000046C8
[Token(Token = "0x6000729")]
[Address(RVA = "0xD6A290", Offset = "0xD69290", VA = "0x180D6A290")]
public DateTime AddMilliseconds(double value)
{
return default(DateTime);
}
/// <summary>Returns a new <see cref="T:System.DateTime" /> that adds the specified number of minutes to the value of this instance.</summary>
/// <param name="value">A number of whole and fractional minutes. The <paramref name="value" /> parameter can be negative or positive.</param>
/// <returns>An object whose value is the sum of the date and time represented by this instance and the number of minutes represented by <paramref name="value" />.</returns>
/// <exception cref="T:System.ArgumentOutOfRangeException">The resulting <see cref="T:System.DateTime" /> is less than <see cref="F:System.DateTime.MinValue" /> or greater than <see cref="F:System.DateTime.MaxValue" />.</exception>
// Token: 0x0600072A RID: 1834 RVA: 0x000064E0 File Offset: 0x000046E0
[Token(Token = "0x600072A")]
[Address(RVA = "0xD6A2A0", Offset = "0xD692A0", VA = "0x180D6A2A0")]
public DateTime AddMinutes(double value)
{
return default(DateTime);
}
/// <summary>Returns a new <see cref="T:System.DateTime" /> that adds the specified number of months to the value of this instance.</summary>
/// <param name="months">A number of months. The <paramref name="months" /> parameter can be negative or positive.</param>
/// <returns>An object whose value is the sum of the date and time represented by this instance and <paramref name="months" />.</returns>
/// <exception cref="T:System.ArgumentOutOfRangeException">The resulting <see cref="T:System.DateTime" /> is less than <see cref="F:System.DateTime.MinValue" /> or greater than <see cref="F:System.DateTime.MaxValue" />.
/// -or-
/// <paramref name="months" /> is less than -120,000 or greater than 120,000.</exception>
// Token: 0x0600072B RID: 1835 RVA: 0x000064F8 File Offset: 0x000046F8
[Token(Token = "0x600072B")]
[Address(RVA = "0xD6A2B0", Offset = "0xD692B0", VA = "0x180D6A2B0")]
public DateTime AddMonths(int months)
{
return default(DateTime);
}
/// <summary>Returns a new <see cref="T:System.DateTime" /> that adds the specified number of seconds to the value of this instance.</summary>
/// <param name="value">A number of whole and fractional seconds. The <paramref name="value" /> parameter can be negative or positive.</param>
/// <returns>An object whose value is the sum of the date and time represented by this instance and the number of seconds represented by <paramref name="value" />.</returns>
/// <exception cref="T:System.ArgumentOutOfRangeException">The resulting <see cref="T:System.DateTime" /> is less than <see cref="F:System.DateTime.MinValue" /> or greater than <see cref="F:System.DateTime.MaxValue" />.</exception>
// Token: 0x0600072C RID: 1836 RVA: 0x00006510 File Offset: 0x00004710
[Token(Token = "0x600072C")]
[Address(RVA = "0xD6A610", Offset = "0xD69610", VA = "0x180D6A610")]
public DateTime AddSeconds(double value)
{
return default(DateTime);
}
/// <summary>Returns a new <see cref="T:System.DateTime" /> that adds the specified number of ticks to the value of this instance.</summary>
/// <param name="value">A number of 100-nanosecond ticks. The <paramref name="value" /> parameter can be positive or negative.</param>
/// <returns>An object whose value is the sum of the date and time represented by this instance and the time represented by <paramref name="value" />.</returns>
/// <exception cref="T:System.ArgumentOutOfRangeException">The resulting <see cref="T:System.DateTime" /> is less than <see cref="F:System.DateTime.MinValue" /> or greater than <see cref="F:System.DateTime.MaxValue" />.</exception>
// Token: 0x0600072D RID: 1837 RVA: 0x00006528 File Offset: 0x00004728
[Token(Token = "0x600072D")]
[Address(RVA = "0xD6A620", Offset = "0xD69620", VA = "0x180D6A620")]
public DateTime AddTicks(long value)
{
return default(DateTime);
}
/// <summary>Returns a new <see cref="T:System.DateTime" /> that adds the specified number of years to the value of this instance.</summary>
/// <param name="value">A number of years. The <paramref name="value" /> parameter can be negative or positive.</param>
/// <returns>An object whose value is the sum of the date and time represented by this instance and the number of years represented by <paramref name="value" />.</returns>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="value" /> or the resulting <see cref="T:System.DateTime" /> is less than <see cref="F:System.DateTime.MinValue" /> or greater than <see cref="F:System.DateTime.MaxValue" />.</exception>
// Token: 0x0600072E RID: 1838 RVA: 0x00006540 File Offset: 0x00004740
[Token(Token = "0x600072E")]
[Address(RVA = "0xD6A6E0", Offset = "0xD696E0", VA = "0x180D6A6E0")]
public DateTime AddYears(int value)
{
return default(DateTime);
}
/// <summary>Compares two instances of <see cref="T:System.DateTime" /> and returns an integer that indicates whether the first instance is earlier than, the same as, or later than the second instance.</summary>
/// <param name="t1">The first object to compare.</param>
/// <param name="t2">The second object to compare.</param>
/// <returns>A signed number indicating the relative values of <paramref name="t1" /> and <paramref name="t2" />.
/// Value Type
///
/// Condition
///
/// Less than zero
///
/// <paramref name="t1" /> is earlier than <paramref name="t2" />.
///
/// Zero
///
/// <paramref name="t1" /> is the same as <paramref name="t2" />.
///
/// Greater than zero
///
/// <paramref name="t1" /> is later than <paramref name="t2" />.</returns>
// Token: 0x0600072F RID: 1839 RVA: 0x00006558 File Offset: 0x00004758
[Token(Token = "0x600072F")]
[Address(RVA = "0xD6AA20", Offset = "0xD69A20", VA = "0x180D6AA20")]
public static int Compare(DateTime t1, DateTime t2)
{
return 0;
}
/// <summary>Compares the value of this instance to a specified object that contains a specified <see cref="T:System.DateTime" /> value, and returns an integer that indicates whether this instance is earlier than, the same as, or later than the specified <see cref="T:System.DateTime" /> value.</summary>
/// <param name="value">A boxed object to compare, or <see langword="null" />.</param>
/// <returns>A signed number indicating the relative values of this instance and <paramref name="value" />.
/// Value
///
/// Description
///
/// Less than zero
///
/// This instance is earlier than <paramref name="value" />.
///
/// Zero
///
/// This instance is the same as <paramref name="value" />.
///
/// Greater than zero
///
/// This instance is later than <paramref name="value" />, or <paramref name="value" /> is <see langword="null" />.</returns>
/// <exception cref="T:System.ArgumentException">
/// <paramref name="value" /> is not a <see cref="T:System.DateTime" />.</exception>
// Token: 0x06000730 RID: 1840 RVA: 0x00006570 File Offset: 0x00004770
[Token(Token = "0x6000730")]
[Address(RVA = "0xD6A940", Offset = "0xD69940", VA = "0x180D6A940", Slot = "4")]
public int CompareTo(object value)
{
return 0;
}
/// <summary>Compares the value of this instance to a specified <see cref="T:System.DateTime" /> value and returns an integer that indicates whether this instance is earlier than, the same as, or later than the specified <see cref="T:System.DateTime" /> value.</summary>
/// <param name="value">The object to compare to the current instance.</param>
/// <returns>A signed number indicating the relative values of this instance and the <paramref name="value" /> parameter.
/// Value
///
/// Description
///
/// Less than zero
///
/// This instance is earlier than <paramref name="value" />.
///
/// Zero
///
/// This instance is the same as <paramref name="value" />.
///
/// Greater than zero
///
/// This instance is later than <paramref name="value" />.</returns>
// Token: 0x06000731 RID: 1841 RVA: 0x00006588 File Offset: 0x00004788
[Token(Token = "0x6000731")]
[Address(RVA = "0xD6A910", Offset = "0xD69910", VA = "0x180D6A910", Slot = "24")]
public int CompareTo(DateTime value)
{
return 0;
}
// Token: 0x06000732 RID: 1842 RVA: 0x000065A0 File Offset: 0x000047A0
[Token(Token = "0x6000732")]
[Address(RVA = "0xD6AA40", Offset = "0xD69A40", VA = "0x180D6AA40")]
private static long DateToTicks(int year, int month, int day)
{
return 0L;
}
// Token: 0x06000733 RID: 1843 RVA: 0x000065B8 File Offset: 0x000047B8
[Token(Token = "0x6000733")]
[Address(RVA = "0xD6CB00", Offset = "0xD6BB00", VA = "0x180D6CB00")]
private static long TimeToTicks(int hour, int minute, int second)
{
return 0L;
}
/// <summary>Returns the number of days in the specified month and year.</summary>
/// <param name="year">The year.</param>
/// <param name="month">The month (a number ranging from 1 to 12).</param>
/// <returns>The number of days in <paramref name="month" /> for the specified <paramref name="year" />.
/// For example, if <paramref name="month" /> equals 2 for February, the return value is 28 or 29 depending upon whether <paramref name="year" /> is a leap year.</returns>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="month" /> is less than 1 or greater than 12.
/// -or-
/// <paramref name="year" /> is less than 1 or greater than 9999.</exception>
// Token: 0x06000734 RID: 1844 RVA: 0x000065D0 File Offset: 0x000047D0
[Token(Token = "0x6000734")]
[Address(RVA = "0xD6AC30", Offset = "0xD69C30", VA = "0x180D6AC30")]
public static int DaysInMonth(int year, int month)
{
return 0;
}
// Token: 0x06000735 RID: 1845 RVA: 0x000065E8 File Offset: 0x000047E8
[Token(Token = "0x6000735")]
[Address(RVA = "0xD6AD90", Offset = "0xD69D90", VA = "0x180D6AD90")]
internal static long DoubleDateToTicks(double value)
{
return 0L;
}
/// <summary>Returns a value indicating whether this instance is equal to a specified object.</summary>
/// <param name="value">The object to compare to this instance.</param>
/// <returns>
/// <see langword="true" /> if <paramref name="value" /> is an instance of <see cref="T:System.DateTime" /> and equals the value of this instance; otherwise, <see langword="false" />.</returns>
// Token: 0x06000736 RID: 1846 RVA: 0x00006600 File Offset: 0x00004800
[Token(Token = "0x6000736")]
[Address(RVA = "0xD6AF20", Offset = "0xD69F20", VA = "0x180D6AF20", Slot = "0")]
public override bool Equals(object value)
{
return default(bool);
}
/// <summary>Returns a value indicating whether the value of this instance is equal to the value of the specified <see cref="T:System.DateTime" /> instance.</summary>
/// <param name="value">The object to compare to this instance.</param>
/// <returns>
/// <see langword="true" /> if the <paramref name="value" /> parameter equals the value of this instance; otherwise, <see langword="false" />.</returns>
// Token: 0x06000737 RID: 1847 RVA: 0x00006618 File Offset: 0x00004818
[Token(Token = "0x6000737")]
[Address(RVA = "0xD6AF00", Offset = "0xD69F00", VA = "0x180D6AF00", Slot = "25")]
public bool Equals(DateTime value)
{
return default(bool);
}
/// <summary>Deserializes a 64-bit binary value and recreates an original serialized <see cref="T:System.DateTime" /> object.</summary>
/// <param name="dateData">A 64-bit signed integer that encodes the <see cref="P:System.DateTime.Kind" /> property in a 2-bit field and the <see cref="P:System.DateTime.Ticks" /> property in a 62-bit field.</param>
/// <returns>An object that is equivalent to the <see cref="T:System.DateTime" /> object that was serialized by the <see cref="M:System.DateTime.ToBinary" /> method.</returns>
/// <exception cref="T:System.ArgumentException">
/// <paramref name="dateData" /> is less than <see cref="F:System.DateTime.MinValue" /> or greater than <see cref="F:System.DateTime.MaxValue" />.</exception>
// Token: 0x06000738 RID: 1848 RVA: 0x00006630 File Offset: 0x00004830
[Token(Token = "0x6000738")]
[Address(RVA = "0xD6B060", Offset = "0xD6A060", VA = "0x180D6B060")]
public static DateTime FromBinary(long dateData)
{
return default(DateTime);
}
// Token: 0x06000739 RID: 1849 RVA: 0x00006648 File Offset: 0x00004848
[Token(Token = "0x6000739")]
[Address(RVA = "0xD6AFC0", Offset = "0xD69FC0", VA = "0x180D6AFC0")]
internal static DateTime FromBinaryRaw(long dateData)
{
return default(DateTime);
}
/// <summary>Converts the specified Windows file time to an equivalent local time.</summary>
/// <param name="fileTime">A Windows file time expressed in ticks.</param>
/// <returns>An object that represents the local time equivalent of the date and time represented by the <paramref name="fileTime" /> parameter.</returns>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="fileTime" /> is less than 0 or represents a time greater than <see cref="F:System.DateTime.MaxValue" />.</exception>
// Token: 0x0600073A RID: 1850 RVA: 0x00006660 File Offset: 0x00004860
[Token(Token = "0x600073A")]
[Address(RVA = "0xD6B390", Offset = "0xD6A390", VA = "0x180D6B390")]
public static DateTime FromFileTime(long fileTime)
{
return default(DateTime);
}
/// <summary>Converts the specified Windows file time to an equivalent UTC time.</summary>
/// <param name="fileTime">A Windows file time expressed in ticks.</param>
/// <returns>An object that represents the UTC time equivalent of the date and time represented by the <paramref name="fileTime" /> parameter.</returns>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="fileTime" /> is less than 0 or represents a time greater than <see cref="F:System.DateTime.MaxValue" />.</exception>
// Token: 0x0600073B RID: 1851 RVA: 0x00006678 File Offset: 0x00004878
[Token(Token = "0x600073B")]
[Address(RVA = "0xD6B2D0", Offset = "0xD6A2D0", VA = "0x180D6B2D0")]
public static DateTime FromFileTimeUtc(long fileTime)
{
return default(DateTime);
}
/// <summary>Returns a <see cref="T:System.DateTime" /> equivalent to the specified OLE Automation Date.</summary>
/// <param name="d">An OLE Automation Date value.</param>
/// <returns>An object that represents the same date and time as <paramref name="d" />.</returns>
/// <exception cref="T:System.ArgumentException">The date is not a valid OLE Automation Date value.</exception>
// Token: 0x0600073C RID: 1852 RVA: 0x00006690 File Offset: 0x00004890
[Token(Token = "0x600073C")]
[Address(RVA = "0xD6B490", Offset = "0xD6A490", VA = "0x180D6B490")]
public static DateTime FromOADate(double d)
{
return default(DateTime);
}
/// <summary>Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object with the data needed to serialize the current <see cref="T:System.DateTime" /> object.</summary>
/// <param name="info">The object to populate with data.</param>
/// <param name="context">The destination for this serialization. (This parameter is not used; specify <see langword="null" />.)</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="info" /> is <see langword="null" />.</exception>
// Token: 0x0600073D RID: 1853 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600073D")]
[Address(RVA = "0xD6CA50", Offset = "0xD6BA50", VA = "0x180D6CA50", Slot = "23")]
void ISerializable.GetObjectData(SerializationInfo info, StreamingContext context)
{
}
/// <summary>Indicates whether this instance of <see cref="T:System.DateTime" /> is within the daylight saving time range for the current time zone.</summary>
/// <returns>
/// <see langword="true" /> if the value of the <see cref="P:System.DateTime.Kind" /> property is <see cref="F:System.DateTimeKind.Local" /> or <see cref="F:System.DateTimeKind.Unspecified" /> and the value of this instance of <see cref="T:System.DateTime" /> is within the daylight saving time range for the local time zone; <see langword="false" /> if <see cref="P:System.DateTime.Kind" /> is <see cref="F:System.DateTimeKind.Utc" />.</returns>
// Token: 0x0600073E RID: 1854 RVA: 0x000066A8 File Offset: 0x000048A8
[Token(Token = "0x600073E")]
[Address(RVA = "0xD6B8A0", Offset = "0xD6A8A0", VA = "0x180D6B8A0")]
public bool IsDaylightSavingTime()
{
return default(bool);
}
/// <summary>Creates a new <see cref="T:System.DateTime" /> object that has the same number of ticks as the specified <see cref="T:System.DateTime" />, but is designated as either local time, Coordinated Universal Time (UTC), or neither, as indicated by the specified <see cref="T:System.DateTimeKind" /> value.</summary>
/// <param name="value">A date and time.</param>
/// <param name="kind">One of the enumeration values that indicates whether the new object represents local time, UTC, or neither.</param>
/// <returns>A new object that has the same number of ticks as the object represented by the <paramref name="value" /> parameter and the <see cref="T:System.DateTimeKind" /> value specified by the <paramref name="kind" /> parameter.</returns>
// Token: 0x0600073F RID: 1855 RVA: 0x000066C0 File Offset: 0x000048C0
[Token(Token = "0x600073F")]
[Address(RVA = "0xD6BED0", Offset = "0xD6AED0", VA = "0x180D6BED0")]
public static DateTime SpecifyKind(DateTime value, DateTimeKind kind)
{
return default(DateTime);
}
/// <summary>Serializes the current <see cref="T:System.DateTime" /> object to a 64-bit binary value that subsequently can be used to recreate the <see cref="T:System.DateTime" /> object.</summary>
/// <returns>A 64-bit signed integer that encodes the <see cref="P:System.DateTime.Kind" /> and <see cref="P:System.DateTime.Ticks" /> properties.</returns>
// Token: 0x06000740 RID: 1856 RVA: 0x000066D8 File Offset: 0x000048D8
[Token(Token = "0x6000740")]
[Address(RVA = "0xD6CBC0", Offset = "0xD6BBC0", VA = "0x180D6CBC0")]
public long ToBinary()
{
return 0L;
}
// Token: 0x06000741 RID: 1857 RVA: 0x000066F0 File Offset: 0x000048F0
[Token(Token = "0x6000741")]
[Address(RVA = "0x63E630", Offset = "0x63D630", VA = "0x18063E630")]
internal long ToBinaryRaw()
{
return 0L;
}
/// <summary>Gets the date component of this instance.</summary>
/// <returns>A new object with the same date as this instance, and the time value set to 12:00:00 midnight (00:00:00).</returns>
// Token: 0x170000A7 RID: 167
// (get) Token: 0x06000742 RID: 1858 RVA: 0x00006708 File Offset: 0x00004908
[Token(Token = "0x170000A7")]
public DateTime Date
{
[Token(Token = "0x6000742")]
[Address(RVA = "0xD6EC50", Offset = "0xD6DC50", VA = "0x180D6EC50")]
get
{
return default(DateTime);
}
}
// Token: 0x06000743 RID: 1859 RVA: 0x00006720 File Offset: 0x00004920
[Token(Token = "0x6000743")]
[Address(RVA = "0xD6B650", Offset = "0xD6A650", VA = "0x180D6B650")]
private int GetDatePart(int part)
{
return 0;
}
/// <summary>Gets the day of the month represented by this instance.</summary>
/// <returns>The day component, expressed as a value between 1 and 31.</returns>
// Token: 0x170000A8 RID: 168
// (get) Token: 0x06000744 RID: 1860 RVA: 0x00006738 File Offset: 0x00004938
[Token(Token = "0x170000A8")]
public int Day
{
[Token(Token = "0x6000744")]
[Address(RVA = "0xD6ECF0", Offset = "0xD6DCF0", VA = "0x180D6ECF0")]
get
{
return 0;
}
}
/// <summary>Gets the day of the week represented by this instance.</summary>
/// <returns>An enumerated constant that indicates the day of the week of this <see cref="T:System.DateTime" /> value.</returns>
// Token: 0x170000A9 RID: 169
// (get) Token: 0x06000745 RID: 1861 RVA: 0x00006750 File Offset: 0x00004950
[Token(Token = "0x170000A9")]
public DayOfWeek DayOfWeek
{
[Token(Token = "0x6000745")]
[Address(RVA = "0xD6EC90", Offset = "0xD6DC90", VA = "0x180D6EC90")]
get
{
return DayOfWeek.Sunday;
}
}
/// <summary>Gets the day of the year represented by this instance.</summary>
/// <returns>The day of the year, expressed as a value between 1 and 366.</returns>
// Token: 0x170000AA RID: 170
// (get) Token: 0x06000746 RID: 1862 RVA: 0x00006768 File Offset: 0x00004968
[Token(Token = "0x170000AA")]
public int DayOfYear
{
[Token(Token = "0x6000746")]
[Address(RVA = "0xD6ECE0", Offset = "0xD6DCE0", VA = "0x180D6ECE0")]
get
{
return 0;
}
}
/// <summary>Returns the hash code for this instance.</summary>
/// <returns>A 32-bit signed integer hash code.</returns>
// Token: 0x06000747 RID: 1863 RVA: 0x00006780 File Offset: 0x00004980
[Token(Token = "0x6000747")]
[Address(RVA = "0xD6B850", Offset = "0xD6A850", VA = "0x180D6B850", Slot = "2")]
public override int GetHashCode()
{
return 0;
}
/// <summary>Gets the hour component of the date represented by this instance.</summary>
/// <returns>The hour component, expressed as a value between 0 and 23.</returns>
// Token: 0x170000AB RID: 171
// (get) Token: 0x06000748 RID: 1864 RVA: 0x00006798 File Offset: 0x00004998
[Token(Token = "0x170000AB")]
public int Hour
{
[Token(Token = "0x6000748")]
[Address(RVA = "0xD6ED00", Offset = "0xD6DD00", VA = "0x180D6ED00")]
get
{
return 0;
}
}
// Token: 0x06000749 RID: 1865 RVA: 0x000067B0 File Offset: 0x000049B0
[Token(Token = "0x6000749")]
[Address(RVA = "0xD6B880", Offset = "0xD6A880", VA = "0x180D6B880")]
internal bool IsAmbiguousDaylightSavingTime()
{
return default(bool);
}
/// <summary>Gets a value that indicates whether the time represented by this instance is based on local time, Coordinated Universal Time (UTC), or neither.</summary>
/// <returns>One of the enumeration values that indicates what the current time represents. The default is <see cref="F:System.DateTimeKind.Unspecified" />.</returns>
// Token: 0x170000AC RID: 172
// (get) Token: 0x0600074A RID: 1866 RVA: 0x000067C8 File Offset: 0x000049C8
[Token(Token = "0x170000AC")]
public DateTimeKind Kind
{
[Token(Token = "0x600074A")]
[Address(RVA = "0xD6ED90", Offset = "0xD6DD90", VA = "0x180D6ED90")]
get
{
return DateTimeKind.Unspecified;
}
}
/// <summary>Gets the milliseconds component of the date represented by this instance.</summary>
/// <returns>The milliseconds component, expressed as a value between 0 and 999.</returns>
// Token: 0x170000AD RID: 173
// (get) Token: 0x0600074B RID: 1867 RVA: 0x000067E0 File Offset: 0x000049E0
[Token(Token = "0x170000AD")]
public int Millisecond
{
[Token(Token = "0x600074B")]
[Address(RVA = "0xD6EDC0", Offset = "0xD6DDC0", VA = "0x180D6EDC0")]
get
{
return 0;
}
}
/// <summary>Gets the minute component of the date represented by this instance.</summary>
/// <returns>The minute component, expressed as a value between 0 and 59.</returns>
// Token: 0x170000AE RID: 174
// (get) Token: 0x0600074C RID: 1868 RVA: 0x000067F8 File Offset: 0x000049F8
[Token(Token = "0x170000AE")]
public int Minute
{
[Token(Token = "0x600074C")]
[Address(RVA = "0xD6EE10", Offset = "0xD6DE10", VA = "0x180D6EE10")]
get
{
return 0;
}
}
/// <summary>Gets the month component of the date represented by this instance.</summary>
/// <returns>The month component, expressed as a value between 1 and 12.</returns>
// Token: 0x170000AF RID: 175
// (get) Token: 0x0600074D RID: 1869 RVA: 0x00006810 File Offset: 0x00004A10
[Token(Token = "0x170000AF")]
public int Month
{
[Token(Token = "0x600074D")]
[Address(RVA = "0xD6EE60", Offset = "0xD6DE60", VA = "0x180D6EE60")]
get
{
return 0;
}
}
/// <summary>Gets a <see cref="T:System.DateTime" /> object that is set to the current date and time on this computer, expressed as the local time.</summary>
/// <returns>An object whose value is the current local date and time.</returns>
// Token: 0x170000B0 RID: 176
// (get) Token: 0x0600074E RID: 1870 RVA: 0x00006828 File Offset: 0x00004A28
[Token(Token = "0x170000B0")]
public static DateTime Now
{
[Token(Token = "0x600074E")]
[Address(RVA = "0xD6EE70", Offset = "0xD6DE70", VA = "0x180D6EE70")]
get
{
return default(DateTime);
}
}
/// <summary>Gets a <see cref="T:System.DateTime" /> object that is set to the current date and time on this computer, expressed as the Coordinated Universal Time (UTC).</summary>
/// <returns>An object whose value is the current UTC date and time.</returns>
// Token: 0x170000B1 RID: 177
// (get) Token: 0x0600074F RID: 1871 RVA: 0x00006840 File Offset: 0x00004A40
[Token(Token = "0x170000B1")]
public static DateTime UtcNow
{
[Token(Token = "0x600074F")]
[Address(RVA = "0xD6F170", Offset = "0xD6E170", VA = "0x180D6F170")]
get
{
return default(DateTime);
}
}
// Token: 0x06000750 RID: 1872 RVA: 0x00006858 File Offset: 0x00004A58
[Token(Token = "0x6000750")]
[Address(RVA = "0xD6B870", Offset = "0xD6A870", VA = "0x180D6B870")]
internal static long GetSystemTimeAsFileTime()
{
return 0L;
}
/// <summary>Gets the seconds component of the date represented by this instance.</summary>
/// <returns>The seconds component, expressed as a value between 0 and 59.</returns>
// Token: 0x170000B2 RID: 178
// (get) Token: 0x06000751 RID: 1873 RVA: 0x00006870 File Offset: 0x00004A70
[Token(Token = "0x170000B2")]
public int Second
{
[Token(Token = "0x6000751")]
[Address(RVA = "0xD6F060", Offset = "0xD6E060", VA = "0x180D6F060")]
get
{
return 0;
}
}
/// <summary>Gets the number of ticks that represent the date and time of this instance.</summary>
/// <returns>The number of ticks that represent the date and time of this instance. The value is between <see langword="DateTime.MinValue.Ticks" /> and <see langword="DateTime.MaxValue.Ticks" />.</returns>
// Token: 0x170000B3 RID: 179
// (get) Token: 0x06000752 RID: 1874 RVA: 0x00006888 File Offset: 0x00004A88
[Token(Token = "0x170000B3")]
public long Ticks
{
[Token(Token = "0x6000752")]
[Address(RVA = "0xD6ED70", Offset = "0xD6DD70", VA = "0x180D6ED70")]
get
{
return 0L;
}
}
/// <summary>Gets the time of day for this instance.</summary>
/// <returns>A time interval that represents the fraction of the day that has elapsed since midnight.</returns>
// Token: 0x170000B4 RID: 180
// (get) Token: 0x06000753 RID: 1875 RVA: 0x000068A0 File Offset: 0x00004AA0
[Token(Token = "0x170000B4")]
public TimeSpan TimeOfDay
{
[Token(Token = "0x6000753")]
[Address(RVA = "0xD6F0B0", Offset = "0xD6E0B0", VA = "0x180D6F0B0")]
get
{
return default(TimeSpan);
}
}
/// <summary>Gets the current date.</summary>
/// <returns>An object that is set to today's date, with the time component set to 00:00:00.</returns>
// Token: 0x170000B5 RID: 181
// (get) Token: 0x06000754 RID: 1876 RVA: 0x000068B8 File Offset: 0x00004AB8
[Token(Token = "0x170000B5")]
public static DateTime Today
{
[Token(Token = "0x6000754")]
[Address(RVA = "0xD6F0E0", Offset = "0xD6E0E0", VA = "0x180D6F0E0")]
get
{
return default(DateTime);
}
}
/// <summary>Gets the year component of the date represented by this instance.</summary>
/// <returns>The year, between 1 and 9999.</returns>
// Token: 0x170000B6 RID: 182
// (get) Token: 0x06000755 RID: 1877 RVA: 0x000068D0 File Offset: 0x00004AD0
[Token(Token = "0x170000B6")]
public int Year
{
[Token(Token = "0x6000755")]
[Address(RVA = "0xD6F1E0", Offset = "0xD6E1E0", VA = "0x180D6F1E0")]
get
{
return 0;
}
}
/// <summary>Returns an indication whether the specified year is a leap year.</summary>
/// <param name="year">A 4-digit year.</param>
/// <returns>
/// <see langword="true" /> if <paramref name="year" /> is a leap year; otherwise, <see langword="false" />.</returns>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="year" /> is less than 1 or greater than 9999.</exception>
// Token: 0x06000756 RID: 1878 RVA: 0x000068E8 File Offset: 0x00004AE8
[Token(Token = "0x6000756")]
[Address(RVA = "0xD6B900", Offset = "0xD6A900", VA = "0x180D6B900")]
public static bool IsLeapYear(int year)
{
return default(bool);
}
/// <summary>Converts the string representation of a date and time to its <see cref="T:System.DateTime" /> equivalent by using the conventions of the current thread culture.</summary>
/// <param name="s">A string that contains a date and time to convert. See The string to parse for more information.</param>
/// <returns>An object that is equivalent to the date and time contained in <paramref name="s" />.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="s" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.FormatException">
/// <paramref name="s" /> does not contain a valid string representation of a date and time.</exception>
// Token: 0x06000757 RID: 1879 RVA: 0x00006900 File Offset: 0x00004B00
[Token(Token = "0x6000757")]
[Address(RVA = "0xD6BDB0", Offset = "0xD6ADB0", VA = "0x180D6BDB0")]
public static DateTime Parse(string s)
{
return default(DateTime);
}
/// <summary>Converts the string representation of a date and time to its <see cref="T:System.DateTime" /> equivalent by using culture-specific format information.</summary>
/// <param name="s">A string that contains a date and time to convert. See The string to parse for more information.</param>
/// <param name="provider">An object that supplies culture-specific format information about <paramref name="s" />. See Parsing and cultural conventions</param>
/// <returns>An object that is equivalent to the date and time contained in <paramref name="s" /> as specified by <paramref name="provider" />.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="s" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.FormatException">
/// <paramref name="s" /> does not contain a valid string representation of a date and time.</exception>
// Token: 0x06000758 RID: 1880 RVA: 0x00006918 File Offset: 0x00004B18
[Token(Token = "0x6000758")]
[Address(RVA = "0xD6BE40", Offset = "0xD6AE40", VA = "0x180D6BE40")]
public static DateTime Parse(string s, IFormatProvider provider)
{
return default(DateTime);
}
/// <summary>Converts the string representation of a date and time to its <see cref="T:System.DateTime" /> equivalent by using culture-specific format information and a formatting style.</summary>
/// <param name="s">A string that contains a date and time to convert. See The string to parse for more information.</param>
/// <param name="provider">An object that supplies culture-specific formatting information about <paramref name="s" />. See Parsing and cultural conventions</param>
/// <param name="styles">A bitwise combination of the enumeration values that indicates the style elements that can be present in <paramref name="s" /> for the parse operation to succeed, and that defines how to interpret the parsed date in relation to the current time zone or the current date. A typical value to specify is <see cref="F:System.Globalization.DateTimeStyles.None" />.</param>
/// <returns>An object that is equivalent to the date and time contained in <paramref name="s" />, as specified by <paramref name="provider" /> and <paramref name="styles" />.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="s" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.FormatException">
/// <paramref name="s" /> does not contain a valid string representation of a date and time.</exception>
/// <exception cref="T:System.ArgumentException">
/// <paramref name="styles" /> contains an invalid combination of <see cref="T:System.Globalization.DateTimeStyles" /> values. For example, both <see cref="F:System.Globalization.DateTimeStyles.AssumeLocal" /> and <see cref="F:System.Globalization.DateTimeStyles.AssumeUniversal" />.</exception>
// Token: 0x06000759 RID: 1881 RVA: 0x00006930 File Offset: 0x00004B30
[Token(Token = "0x6000759")]
[Address(RVA = "0xD6BD00", Offset = "0xD6AD00", VA = "0x180D6BD00")]
public static DateTime Parse(string s, IFormatProvider provider, DateTimeStyles styles)
{
return default(DateTime);
}
/// <summary>Converts the specified string representation of a date and time to its <see cref="T:System.DateTime" /> equivalent using the specified format and culture-specific format information. The format of the string representation must match the specified format exactly.</summary>
/// <param name="s">A string that contains a date and time to convert.</param>
/// <param name="format">A format specifier that defines the required format of <paramref name="s" />. For more information, see the Remarks section.</param>
/// <param name="provider">An object that supplies culture-specific format information about <paramref name="s" />.</param>
/// <returns>An object that is equivalent to the date and time contained in <paramref name="s" />, as specified by <paramref name="format" /> and <paramref name="provider" />.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="s" /> or <paramref name="format" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.FormatException">
/// <paramref name="s" /> or <paramref name="format" /> is an empty string.
/// -or-
/// <paramref name="s" /> does not contain a date and time that corresponds to the pattern specified in <paramref name="format" />.
/// -or-
/// The hour component and the AM/PM designator in <paramref name="s" /> do not agree.</exception>
// Token: 0x0600075A RID: 1882 RVA: 0x00006948 File Offset: 0x00004B48
[Token(Token = "0x600075A")]
[Address(RVA = "0xD6B9E0", Offset = "0xD6A9E0", VA = "0x180D6B9E0")]
public static DateTime ParseExact(string s, string format, IFormatProvider provider)
{
return default(DateTime);
}
/// <summary>Converts the specified string representation of a date and time to its <see cref="T:System.DateTime" /> equivalent using the specified format, culture-specific format information, and style. The format of the string representation must match the specified format exactly or an exception is thrown.</summary>
/// <param name="s">A string containing a date and time to convert.</param>
/// <param name="format">A format specifier that defines the required format of <paramref name="s" />. For more information, see the Remarks section.</param>
/// <param name="provider">An object that supplies culture-specific formatting information about <paramref name="s" />.</param>
/// <param name="style">A bitwise combination of the enumeration values that provides additional information about <paramref name="s" />, about style elements that may be present in <paramref name="s" />, or about the conversion from <paramref name="s" /> to a <see cref="T:System.DateTime" /> value. A typical value to specify is <see cref="F:System.Globalization.DateTimeStyles.None" />.</param>
/// <returns>An object that is equivalent to the date and time contained in <paramref name="s" />, as specified by <paramref name="format" />, <paramref name="provider" />, and <paramref name="style" />.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="s" /> or <paramref name="format" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.FormatException">
/// <paramref name="s" /> or <paramref name="format" /> is an empty string.
/// -or-
/// <paramref name="s" /> does not contain a date and time that corresponds to the pattern specified in <paramref name="format" />.
/// -or-
/// The hour component and the AM/PM designator in <paramref name="s" /> do not agree.</exception>
/// <exception cref="T:System.ArgumentException">
/// <paramref name="style" /> contains an invalid combination of <see cref="T:System.Globalization.DateTimeStyles" /> values. For example, both <see cref="F:System.Globalization.DateTimeStyles.AssumeLocal" /> and <see cref="F:System.Globalization.DateTimeStyles.AssumeUniversal" />.</exception>
// Token: 0x0600075B RID: 1883 RVA: 0x00006960 File Offset: 0x00004B60
[Token(Token = "0x600075B")]
[Address(RVA = "0xD6BC30", Offset = "0xD6AC30", VA = "0x180D6BC30")]
public static DateTime ParseExact(string s, string format, IFormatProvider provider, DateTimeStyles style)
{
return default(DateTime);
}
/// <summary>Converts the specified string representation of a date and time to its <see cref="T:System.DateTime" /> equivalent using the specified array of formats, culture-specific format information, and style. The format of the string representation must match at least one of the specified formats exactly or an exception is thrown.</summary>
/// <param name="s">A string that contains a date and time to convert.</param>
/// <param name="formats">An array of allowable formats of <paramref name="s" />. For more information, see the Remarks section.</param>
/// <param name="provider">An object that supplies culture-specific format information about <paramref name="s" />.</param>
/// <param name="style">A bitwise combination of enumeration values that indicates the permitted format of <paramref name="s" />. A typical value to specify is <see cref="F:System.Globalization.DateTimeStyles.None" />.</param>
/// <returns>An object that is equivalent to the date and time contained in <paramref name="s" />, as specified by <paramref name="formats" />, <paramref name="provider" />, and <paramref name="style" />.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="s" /> or <paramref name="formats" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.FormatException">
/// <paramref name="s" /> is an empty string.
/// -or-
/// an element of <paramref name="formats" /> is an empty string.
/// -or-
/// <paramref name="s" /> does not contain a date and time that corresponds to any element of <paramref name="formats" />.
/// -or-
/// The hour component and the AM/PM designator in <paramref name="s" /> do not agree.</exception>
/// <exception cref="T:System.ArgumentException">
/// <paramref name="style" /> contains an invalid combination of <see cref="T:System.Globalization.DateTimeStyles" /> values. For example, both <see cref="F:System.Globalization.DateTimeStyles.AssumeLocal" /> and <see cref="F:System.Globalization.DateTimeStyles.AssumeUniversal" />.</exception>
// Token: 0x0600075C RID: 1884 RVA: 0x00006978 File Offset: 0x00004B78
[Token(Token = "0x600075C")]
[Address(RVA = "0xD6BA90", Offset = "0xD6AA90", VA = "0x180D6BA90")]
public static DateTime ParseExact(string s, string[] formats, IFormatProvider provider, DateTimeStyles style)
{
return default(DateTime);
}
/// <summary>Subtracts the specified date and time from this instance.</summary>
/// <param name="value">The date and time value to subtract.</param>
/// <returns>A time interval that is equal to the date and time represented by this instance minus the date and time represented by <paramref name="value" />.</returns>
/// <exception cref="T:System.ArgumentOutOfRangeException">The result is less than <see cref="F:System.DateTime.MinValue" /> or greater than <see cref="F:System.DateTime.MaxValue" />.</exception>
// Token: 0x0600075D RID: 1885 RVA: 0x00006990 File Offset: 0x00004B90
[Token(Token = "0x600075D")]
[Address(RVA = "0xD6BF10", Offset = "0xD6AF10", VA = "0x180D6BF10")]
public TimeSpan Subtract(DateTime value)
{
return default(TimeSpan);
}
/// <summary>Converts the value of the current <see cref="T:System.DateTime" /> object to a Windows file time.</summary>
/// <returns>The value of the current <see cref="T:System.DateTime" /> object expressed as a Windows file time.</returns>
/// <exception cref="T:System.ArgumentOutOfRangeException">The resulting file time would represent a date and time before 12:00 midnight January 1, 1601 C.E. UTC.</exception>
// Token: 0x0600075E RID: 1886 RVA: 0x000069A8 File Offset: 0x00004BA8
[Token(Token = "0x600075E")]
[Address(RVA = "0xD6CCF0", Offset = "0xD6BCF0", VA = "0x180D6CCF0")]
public long ToFileTime()
{
return 0L;
}
/// <summary>Converts the value of the current <see cref="T:System.DateTime" /> object to a Windows file time.</summary>
/// <returns>The value of the current <see cref="T:System.DateTime" /> object expressed as a Windows file time.</returns>
/// <exception cref="T:System.ArgumentOutOfRangeException">The resulting file time would represent a date and time before 12:00 midnight January 1, 1601 C.E. UTC.</exception>
// Token: 0x0600075F RID: 1887 RVA: 0x000069C0 File Offset: 0x00004BC0
[Token(Token = "0x600075F")]
[Address(RVA = "0xD6CC40", Offset = "0xD6BC40", VA = "0x180D6CC40")]
public long ToFileTimeUtc()
{
return 0L;
}
/// <summary>Converts the value of the current <see cref="T:System.DateTime" /> object to local time.</summary>
/// <returns>An object whose <see cref="P:System.DateTime.Kind" /> property is <see cref="F:System.DateTimeKind.Local" />, and whose value is the local time equivalent to the value of the current <see cref="T:System.DateTime" /> object, or <see cref="F:System.DateTime.MaxValue" /> if the converted value is too large to be represented by a <see cref="T:System.DateTime" /> object, or <see cref="F:System.DateTime.MinValue" /> if the converted value is too small to be represented as a <see cref="T:System.DateTime" /> object.</returns>
// Token: 0x06000760 RID: 1888 RVA: 0x000069D8 File Offset: 0x00004BD8
[Token(Token = "0x6000760")]
[Address(RVA = "0xD6CDB0", Offset = "0xD6BDB0", VA = "0x180D6CDB0")]
public DateTime ToLocalTime()
{
return default(DateTime);
}
// Token: 0x06000761 RID: 1889 RVA: 0x000069F0 File Offset: 0x00004BF0
[Token(Token = "0x6000761")]
[Address(RVA = "0xD6CDC0", Offset = "0xD6BDC0", VA = "0x180D6CDC0")]
internal DateTime ToLocalTime(bool throwOnOverflow)
{
return default(DateTime);
}
/// <summary>Converts the value of the current <see cref="T:System.DateTime" /> object to its equivalent short date string representation.</summary>
/// <returns>A string that contains the short date string representation of the current <see cref="T:System.DateTime" /> object.</returns>
// Token: 0x06000762 RID: 1890 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6000762")]
[Address(RVA = "0xD6CF60", Offset = "0xD6BF60", VA = "0x180D6CF60")]
public string ToShortDateString()
{
return null;
}
/// <summary>Converts the value of the current <see cref="T:System.DateTime" /> object to its equivalent short time string representation.</summary>
/// <returns>A string that contains the short time string representation of the current <see cref="T:System.DateTime" /> object.</returns>
// Token: 0x06000763 RID: 1891 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6000763")]
[Address(RVA = "0xD6CFF0", Offset = "0xD6BFF0", VA = "0x180D6CFF0")]
public string ToShortTimeString()
{
return null;
}
/// <summary>Converts the value of the current <see cref="T:System.DateTime" /> object to its equivalent string representation using the formatting conventions of the current culture.</summary>
/// <returns>A string representation of the value of the current <see cref="T:System.DateTime" /> object.</returns>
/// <exception cref="T:System.ArgumentOutOfRangeException">The date and time is outside the range of dates supported by the calendar used by the current culture.</exception>
// Token: 0x06000764 RID: 1892 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6000764")]
[Address(RVA = "0xD6D260", Offset = "0xD6C260", VA = "0x180D6D260", Slot = "3")]
public override string ToString()
{
return null;
}
/// <summary>Converts the value of the current <see cref="T:System.DateTime" /> object to its equivalent string representation using the specified format and the formatting conventions of the current culture.</summary>
/// <param name="format">A standard or custom date and time format string.</param>
/// <returns>A string representation of value of the current <see cref="T:System.DateTime" /> object as specified by <paramref name="format" />.</returns>
/// <exception cref="T:System.FormatException">The length of <paramref name="format" /> is 1, and it is not one of the format specifier characters defined for <see cref="T:System.Globalization.DateTimeFormatInfo" />.
/// -or-
/// <paramref name="format" /> does not contain a valid custom format pattern.</exception>
/// <exception cref="T:System.ArgumentOutOfRangeException">The date and time is outside the range of dates supported by the calendar used by the current culture.</exception>
// Token: 0x06000765 RID: 1893 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6000765")]
[Address(RVA = "0xD6D080", Offset = "0xD6C080", VA = "0x180D6D080")]
public string ToString(string format)
{
return null;
}
/// <summary>Converts the value of the current <see cref="T:System.DateTime" /> object to its equivalent string representation using the specified culture-specific format information.</summary>
/// <param name="provider">An object that supplies culture-specific formatting information.</param>
/// <returns>A string representation of value of the current <see cref="T:System.DateTime" /> object as specified by <paramref name="provider" />.</returns>
/// <exception cref="T:System.ArgumentOutOfRangeException">The date and time is outside the range of dates supported by the calendar used by <paramref name="provider" />.</exception>
// Token: 0x06000766 RID: 1894 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6000766")]
[Address(RVA = "0xD6D120", Offset = "0xD6C120", VA = "0x180D6D120", Slot = "21")]
public string ToString(IFormatProvider provider)
{
return null;
}
/// <summary>Converts the value of the current <see cref="T:System.DateTime" /> object to its equivalent string representation using the specified format and culture-specific format information.</summary>
/// <param name="format">A standard or custom date and time format string.</param>
/// <param name="provider">An object that supplies culture-specific formatting information.</param>
/// <returns>A string representation of value of the current <see cref="T:System.DateTime" /> object as specified by <paramref name="format" /> and <paramref name="provider" />.</returns>
/// <exception cref="T:System.FormatException">The length of <paramref name="format" /> is 1, and it is not one of the format specifier characters defined for <see cref="T:System.Globalization.DateTimeFormatInfo" />.
/// -or-
/// <paramref name="format" /> does not contain a valid custom format pattern.</exception>
/// <exception cref="T:System.ArgumentOutOfRangeException">The date and time is outside the range of dates supported by the calendar used by <paramref name="provider" />.</exception>
// Token: 0x06000767 RID: 1895 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6000767")]
[Address(RVA = "0xD6D1C0", Offset = "0xD6C1C0", VA = "0x180D6D1C0", Slot = "5")]
public string ToString(string format, IFormatProvider provider)
{
return null;
}
/// <summary>Converts the value of the current <see cref="T:System.DateTime" /> object to Coordinated Universal Time (UTC).</summary>
/// <returns>An object whose <see cref="P:System.DateTime.Kind" /> property is <see cref="F:System.DateTimeKind.Utc" />, and whose value is the UTC equivalent to the value of the current <see cref="T:System.DateTime" /> object, or <see cref="F:System.DateTime.MaxValue" /> if the converted value is too large to be represented by a <see cref="T:System.DateTime" /> object, or <see cref="F:System.DateTime.MinValue" /> if the converted value is too small to be represented by a <see cref="T:System.DateTime" /> object.</returns>
// Token: 0x06000768 RID: 1896 RVA: 0x00006A08 File Offset: 0x00004C08
[Token(Token = "0x6000768")]
[Address(RVA = "0xD6D2F0", Offset = "0xD6C2F0", VA = "0x180D6D2F0")]
public DateTime ToUniversalTime()
{
return default(DateTime);
}
/// <summary>Converts the specified string representation of a date and time to its <see cref="T:System.DateTime" /> equivalent and returns a value that indicates whether the conversion succeeded.</summary>
/// <param name="s">A string containing a date and time to convert.</param>
/// <param name="result">When this method returns, contains the <see cref="T:System.DateTime" /> value equivalent to the date and time contained in <paramref name="s" />, if the conversion succeeded, or <see cref="F:System.DateTime.MinValue" /> if the conversion failed. The conversion fails if the <paramref name="s" /> parameter is <see langword="null" />, is an empty string (""), or does not contain a valid string representation of a date and time. This parameter is passed uninitialized.</param>
/// <returns>
/// <see langword="true" /> if the <paramref name="s" /> parameter was converted successfully; otherwise, <see langword="false" />.</returns>
// Token: 0x06000769 RID: 1897 RVA: 0x00006A20 File Offset: 0x00004C20
[Token(Token = "0x6000769")]
[Address(RVA = "0xD6D960", Offset = "0xD6C960", VA = "0x180D6D960")]
public static bool TryParse(string s, out DateTime result)
{
return default(bool);
}
/// <summary>Converts the specified string representation of a date and time to its <see cref="T:System.DateTime" /> equivalent using the specified culture-specific format information and formatting style, and returns a value that indicates whether the conversion succeeded.</summary>
/// <param name="s">A string containing a date and time to convert.</param>
/// <param name="provider">An object that supplies culture-specific formatting information about <paramref name="s" />.</param>
/// <param name="styles">A bitwise combination of enumeration values that defines how to interpret the parsed date in relation to the current time zone or the current date. A typical value to specify is <see cref="F:System.Globalization.DateTimeStyles.None" />.</param>
/// <param name="result">When this method returns, contains the <see cref="T:System.DateTime" /> value equivalent to the date and time contained in <paramref name="s" />, if the conversion succeeded, or <see cref="F:System.DateTime.MinValue" /> if the conversion failed. The conversion fails if the <paramref name="s" /> parameter is <see langword="null" />, is an empty string (""), or does not contain a valid string representation of a date and time. This parameter is passed uninitialized.</param>
/// <returns>
/// <see langword="true" /> if the <paramref name="s" /> parameter was converted successfully; otherwise, <see langword="false" />.</returns>
/// <exception cref="T:System.ArgumentException">
/// <paramref name="styles" /> is not a valid <see cref="T:System.Globalization.DateTimeStyles" /> value.
/// -or-
/// <paramref name="styles" /> contains an invalid combination of <see cref="T:System.Globalization.DateTimeStyles" /> values (for example, both <see cref="F:System.Globalization.DateTimeStyles.AssumeLocal" /> and <see cref="F:System.Globalization.DateTimeStyles.AssumeUniversal" />).</exception>
/// <exception cref="T:System.NotSupportedException">
/// <paramref name="provider" /> is a neutral culture and cannot be used in a parsing operation.</exception>
// Token: 0x0600076A RID: 1898 RVA: 0x00006A38 File Offset: 0x00004C38
[Token(Token = "0x600076A")]
[Address(RVA = "0xD6D890", Offset = "0xD6C890", VA = "0x180D6D890")]
public static bool TryParse(string s, IFormatProvider provider, DateTimeStyles styles, out DateTime result)
{
return default(bool);
}
/// <summary>Converts the specified string representation of a date and time to its <see cref="T:System.DateTime" /> equivalent using the specified format, culture-specific format information, and style. The format of the string representation must match the specified format exactly. The method returns a value that indicates whether the conversion succeeded.</summary>
/// <param name="s">A string containing a date and time to convert.</param>
/// <param name="format">The required format of <paramref name="s" />.</param>
/// <param name="provider">An object that supplies culture-specific formatting information about <paramref name="s" />.</param>
/// <param name="style">A bitwise combination of one or more enumeration values that indicate the permitted format of <paramref name="s" />.</param>
/// <param name="result">When this method returns, contains the <see cref="T:System.DateTime" /> value equivalent to the date and time contained in <paramref name="s" />, if the conversion succeeded, or <see cref="F:System.DateTime.MinValue" /> if the conversion failed. The conversion fails if either the <paramref name="s" /> or <paramref name="format" /> parameter is <see langword="null" />, is an empty string, or does not contain a date and time that correspond to the pattern specified in <paramref name="format" />. This parameter is passed uninitialized.</param>
/// <returns>
/// <see langword="true" /> if <paramref name="s" /> was converted successfully; otherwise, <see langword="false" />.</returns>
/// <exception cref="T:System.ArgumentException">
/// <paramref name="styles" /> is not a valid <see cref="T:System.Globalization.DateTimeStyles" /> value.
/// -or-
/// <paramref name="styles" /> contains an invalid combination of <see cref="T:System.Globalization.DateTimeStyles" /> values (for example, both <see cref="F:System.Globalization.DateTimeStyles.AssumeLocal" /> and <see cref="F:System.Globalization.DateTimeStyles.AssumeUniversal" />).</exception>
// Token: 0x0600076B RID: 1899 RVA: 0x00006A50 File Offset: 0x00004C50
[Token(Token = "0x600076B")]
[Address(RVA = "0xD6D6F0", Offset = "0xD6C6F0", VA = "0x180D6D6F0")]
public static bool TryParseExact(string s, string format, IFormatProvider provider, DateTimeStyles style, out DateTime result)
{
return default(bool);
}
/// <summary>Converts the specified string representation of a date and time to its <see cref="T:System.DateTime" /> equivalent using the specified array of formats, culture-specific format information, and style. The format of the string representation must match at least one of the specified formats exactly. The method returns a value that indicates whether the conversion succeeded.</summary>
/// <param name="s">A string that contains a date and time to convert.</param>
/// <param name="formats">An array of allowable formats of <paramref name="s" />.</param>
/// <param name="provider">An object that supplies culture-specific format information about <paramref name="s" />.</param>
/// <param name="style">A bitwise combination of enumeration values that indicates the permitted format of <paramref name="s" />. A typical value to specify is <see cref="F:System.Globalization.DateTimeStyles.None" />.</param>
/// <param name="result">When this method returns, contains the <see cref="T:System.DateTime" /> value equivalent to the date and time contained in <paramref name="s" />, if the conversion succeeded, or <see cref="F:System.DateTime.MinValue" /> if the conversion failed. The conversion fails if <paramref name="s" /> or <paramref name="formats" /> is <see langword="null" />, <paramref name="s" /> or an element of <paramref name="formats" /> is an empty string, or the format of <paramref name="s" /> is not exactly as specified by at least one of the format patterns in <paramref name="formats" />. This parameter is passed uninitialized.</param>
/// <returns>
/// <see langword="true" /> if the <paramref name="s" /> parameter was converted successfully; otherwise, <see langword="false" />.</returns>
/// <exception cref="T:System.ArgumentException">
/// <paramref name="styles" /> is not a valid <see cref="T:System.Globalization.DateTimeStyles" /> value.
/// -or-
/// <paramref name="styles" /> contains an invalid combination of <see cref="T:System.Globalization.DateTimeStyles" /> values (for example, both <see cref="F:System.Globalization.DateTimeStyles.AssumeLocal" /> and <see cref="F:System.Globalization.DateTimeStyles.AssumeUniversal" />).</exception>
// Token: 0x0600076C RID: 1900 RVA: 0x00006A68 File Offset: 0x00004C68
[Token(Token = "0x600076C")]
[Address(RVA = "0xD6D550", Offset = "0xD6C550", VA = "0x180D6D550")]
public static bool TryParseExact(string s, string[] formats, IFormatProvider provider, DateTimeStyles style, out DateTime result)
{
return default(bool);
}
/// <summary>Adds a specified time interval to a specified date and time, yielding a new date and time.</summary>
/// <param name="d">The date and time value to add.</param>
/// <param name="t">The time interval to add.</param>
/// <returns>An object that is the sum of the values of <paramref name="d" /> and <paramref name="t" />.</returns>
/// <exception cref="T:System.ArgumentOutOfRangeException">The resulting <see cref="T:System.DateTime" /> is less than <see cref="F:System.DateTime.MinValue" /> or greater than <see cref="F:System.DateTime.MaxValue" />.</exception>
// Token: 0x0600076D RID: 1901 RVA: 0x00006A80 File Offset: 0x00004C80
[Token(Token = "0x600076D")]
[Address(RVA = "0xD6F1F0", Offset = "0xD6E1F0", VA = "0x180D6F1F0")]
public static DateTime operator +(DateTime d, TimeSpan t)
{
return default(DateTime);
}
/// <summary>Subtracts a specified time interval from a specified date and time and returns a new date and time.</summary>
/// <param name="d">The date and time value to subtract from.</param>
/// <param name="t">The time interval to subtract.</param>
/// <returns>An object whose value is the value of <paramref name="d" /> minus the value of <paramref name="t" />.</returns>
/// <exception cref="T:System.ArgumentOutOfRangeException">The resulting <see cref="T:System.DateTime" /> is less than <see cref="F:System.DateTime.MinValue" /> or greater than <see cref="F:System.DateTime.MaxValue" />.</exception>
// Token: 0x0600076E RID: 1902 RVA: 0x00006A98 File Offset: 0x00004C98
[Token(Token = "0x600076E")]
[Address(RVA = "0xD6F370", Offset = "0xD6E370", VA = "0x180D6F370")]
public static DateTime operator -(DateTime d, TimeSpan t)
{
return default(DateTime);
}
/// <summary>Subtracts a specified date and time from another specified date and time and returns a time interval.</summary>
/// <param name="d1">The date and time value to subtract from (the minuend).</param>
/// <param name="d2">The date and time value to subtract (the subtrahend).</param>
/// <returns>The time interval between <paramref name="d1" /> and <paramref name="d2" />; that is, <paramref name="d1" /> minus <paramref name="d2" />.</returns>
// Token: 0x0600076F RID: 1903 RVA: 0x00006AB0 File Offset: 0x00004CB0
[Token(Token = "0x600076F")]
[Address(RVA = "0xD6F430", Offset = "0xD6E430", VA = "0x180D6F430")]
public static TimeSpan operator -(DateTime d1, DateTime d2)
{
return default(TimeSpan);
}
/// <summary>Determines whether two specified instances of <see cref="T:System.DateTime" /> are equal.</summary>
/// <param name="d1">The first object to compare.</param>
/// <param name="d2">The second object to compare.</param>
/// <returns>
/// <see langword="true" /> if <paramref name="d1" /> and <paramref name="d2" /> represent the same date and time; otherwise, <see langword="false" />.</returns>
// Token: 0x06000770 RID: 1904 RVA: 0x00006AC8 File Offset: 0x00004CC8
[Token(Token = "0x6000770")]
[Address(RVA = "0xD6F2B0", Offset = "0xD6E2B0", VA = "0x180D6F2B0")]
public static bool operator ==(DateTime d1, DateTime d2)
{
return default(bool);
}
/// <summary>Determines whether two specified instances of <see cref="T:System.DateTime" /> are not equal.</summary>
/// <param name="d1">The first object to compare.</param>
/// <param name="d2">The second object to compare.</param>
/// <returns>
/// <see langword="true" /> if <paramref name="d1" /> and <paramref name="d2" /> do not represent the same date and time; otherwise, <see langword="false" />.</returns>
// Token: 0x06000771 RID: 1905 RVA: 0x00006AE0 File Offset: 0x00004CE0
[Token(Token = "0x6000771")]
[Address(RVA = "0xD6F310", Offset = "0xD6E310", VA = "0x180D6F310")]
public static bool operator !=(DateTime d1, DateTime d2)
{
return default(bool);
}
/// <summary>Determines whether one specified <see cref="T:System.DateTime" /> is earlier than another specified <see cref="T:System.DateTime" />.</summary>
/// <param name="t1">The first object to compare.</param>
/// <param name="t2">The second object to compare.</param>
/// <returns>
/// <see langword="true" /> if <paramref name="t1" /> is earlier than <paramref name="t2" />; otherwise, <see langword="false" />.</returns>
// Token: 0x06000772 RID: 1906 RVA: 0x00006AF8 File Offset: 0x00004CF8
[Token(Token = "0x6000772")]
[Address(RVA = "0xD6F350", Offset = "0xD6E350", VA = "0x180D6F350")]
public static bool operator <(DateTime t1, DateTime t2)
{
return default(bool);
}
/// <summary>Determines whether one specified <see cref="T:System.DateTime" /> represents a date and time that is the same as or earlier than another specified <see cref="T:System.DateTime" />.</summary>
/// <param name="t1">The first object to compare.</param>
/// <param name="t2">The second object to compare.</param>
/// <returns>
/// <see langword="true" /> if <paramref name="t1" /> is the same as or earlier than <paramref name="t2" />; otherwise, <see langword="false" />.</returns>
// Token: 0x06000773 RID: 1907 RVA: 0x00006B10 File Offset: 0x00004D10
[Token(Token = "0x6000773")]
[Address(RVA = "0xD6F330", Offset = "0xD6E330", VA = "0x180D6F330")]
public static bool operator <=(DateTime t1, DateTime t2)
{
return default(bool);
}
/// <summary>Determines whether one specified <see cref="T:System.DateTime" /> is later than another specified <see cref="T:System.DateTime" />.</summary>
/// <param name="t1">The first object to compare.</param>
/// <param name="t2">The second object to compare.</param>
/// <returns>
/// <see langword="true" /> if <paramref name="t1" /> is later than <paramref name="t2" />; otherwise, <see langword="false" />.</returns>
// Token: 0x06000774 RID: 1908 RVA: 0x00006B28 File Offset: 0x00004D28
[Token(Token = "0x6000774")]
[Address(RVA = "0xD6F2F0", Offset = "0xD6E2F0", VA = "0x180D6F2F0")]
public static bool operator >(DateTime t1, DateTime t2)
{
return default(bool);
}
/// <summary>Determines whether one specified <see cref="T:System.DateTime" /> represents a date and time that is the same as or later than another specified <see cref="T:System.DateTime" />.</summary>
/// <param name="t1">The first object to compare.</param>
/// <param name="t2">The second object to compare.</param>
/// <returns>
/// <see langword="true" /> if <paramref name="t1" /> is the same as or later than <paramref name="t2" />; otherwise, <see langword="false" />.</returns>
// Token: 0x06000775 RID: 1909 RVA: 0x00006B40 File Offset: 0x00004D40
[Token(Token = "0x6000775")]
[Address(RVA = "0xD6F2D0", Offset = "0xD6E2D0", VA = "0x180D6F2D0")]
public static bool operator >=(DateTime t1, DateTime t2)
{
return default(bool);
}
/// <summary>Returns the <see cref="T:System.TypeCode" /> for value type <see cref="T:System.DateTime" />.</summary>
/// <returns>The enumerated constant, <see cref="F:System.TypeCode.DateTime" />.</returns>
// Token: 0x06000776 RID: 1910 RVA: 0x00006B58 File Offset: 0x00004D58
[Token(Token = "0x6000776")]
[Address(RVA = "0x8BB9C0", Offset = "0x8BA9C0", VA = "0x1808BB9C0", Slot = "6")]
public TypeCode GetTypeCode()
{
return TypeCode.Empty;
}
/// <summary>This conversion is not supported. Attempting to use this method throws an <see cref="T:System.InvalidCastException" />.</summary>
/// <param name="provider">An object that implements the <see cref="T:System.IFormatProvider" /> interface. (This parameter is not used; specify <see langword="null" />.)</param>
/// <returns>The return value for this member is not used.</returns>
/// <exception cref="T:System.InvalidCastException">In all cases.</exception>
// Token: 0x06000777 RID: 1911 RVA: 0x00006B70 File Offset: 0x00004D70
[Token(Token = "0x6000777")]
[Address(RVA = "0xD6BF30", Offset = "0xD6AF30", VA = "0x180D6BF30", Slot = "7")]
bool IConvertible.ToBoolean(IFormatProvider provider)
{
return default(bool);
}
/// <summary>This conversion is not supported. Attempting to use this method throws an <see cref="T:System.InvalidCastException" />.</summary>
/// <param name="provider">An object that implements the <see cref="T:System.IFormatProvider" /> interface. (This parameter is not used; specify <see langword="null" />.)</param>
/// <returns>The return value for this member is not used.</returns>
/// <exception cref="T:System.InvalidCastException">In all cases.</exception>
// Token: 0x06000778 RID: 1912 RVA: 0x00006B88 File Offset: 0x00004D88
[Token(Token = "0x6000778")]
[Address(RVA = "0xD6C0D0", Offset = "0xD6B0D0", VA = "0x180D6C0D0", Slot = "8")]
char IConvertible.ToChar(IFormatProvider provider)
{
return '\0';
}
/// <summary>This conversion is not supported. Attempting to use this method throws an <see cref="T:System.InvalidCastException" />.</summary>
/// <param name="provider">An object that implements the <see cref="T:System.IFormatProvider" /> interface. (This parameter is not used; specify <see langword="null" />.)</param>
/// <returns>The return value for this member is not used.</returns>
/// <exception cref="T:System.InvalidCastException">In all cases.</exception>
// Token: 0x06000779 RID: 1913 RVA: 0x00006BA0 File Offset: 0x00004DA0
[Token(Token = "0x6000779")]
[Address(RVA = "0xD6C5B0", Offset = "0xD6B5B0", VA = "0x180D6C5B0", Slot = "9")]
sbyte IConvertible.ToSByte(IFormatProvider provider)
{
return 0;
}
/// <summary>This conversion is not supported. Attempting to use this method throws an <see cref="T:System.InvalidCastException" />.</summary>
/// <param name="provider">An object that implements the <see cref="T:System.IFormatProvider" /> interface. (This parameter is not used; specify <see langword="null" />.)</param>
/// <returns>The return value for this member is not used.</returns>
/// <exception cref="T:System.InvalidCastException">In all cases.</exception>
// Token: 0x0600077A RID: 1914 RVA: 0x00006BB8 File Offset: 0x00004DB8
[Token(Token = "0x600077A")]
[Address(RVA = "0xD6C000", Offset = "0xD6B000", VA = "0x180D6C000", Slot = "10")]
byte IConvertible.ToByte(IFormatProvider provider)
{
return 0;
}
/// <summary>This conversion is not supported. Attempting to use this method throws an <see cref="T:System.InvalidCastException" />.</summary>
/// <param name="provider">An object that implements the <see cref="T:System.IFormatProvider" /> interface. (This parameter is not used; specify <see langword="null" />.)</param>
/// <returns>The return value for this member is not used.</returns>
/// <exception cref="T:System.InvalidCastException">In all cases.</exception>
// Token: 0x0600077B RID: 1915 RVA: 0x00006BD0 File Offset: 0x00004DD0
[Token(Token = "0x600077B")]
[Address(RVA = "0xD6C340", Offset = "0xD6B340", VA = "0x180D6C340", Slot = "11")]
short IConvertible.ToInt16(IFormatProvider provider)
{
return 0;
}
/// <summary>This conversion is not supported. Attempting to use this method throws an <see cref="T:System.InvalidCastException" />.</summary>
/// <param name="provider">An object that implements the <see cref="T:System.IFormatProvider" /> interface. (This parameter is not used; specify <see langword="null" />.)</param>
/// <returns>The return value for this member is not used.</returns>
/// <exception cref="T:System.InvalidCastException">In all cases.</exception>
// Token: 0x0600077C RID: 1916 RVA: 0x00006BE8 File Offset: 0x00004DE8
[Token(Token = "0x600077C")]
[Address(RVA = "0xD6C7E0", Offset = "0xD6B7E0", VA = "0x180D6C7E0", Slot = "12")]
ushort IConvertible.ToUInt16(IFormatProvider provider)
{
return 0;
}
/// <summary>This conversion is not supported. Attempting to use this method throws an <see cref="T:System.InvalidCastException" />.</summary>
/// <param name="provider">An object that implements the <see cref="T:System.IFormatProvider" /> interface. (This parameter is not used; specify <see langword="null" />.)</param>
/// <returns>The return value for this member is not used.</returns>
/// <exception cref="T:System.InvalidCastException">In all cases.</exception>
// Token: 0x0600077D RID: 1917 RVA: 0x00006C00 File Offset: 0x00004E00
[Token(Token = "0x600077D")]
[Address(RVA = "0xD6C410", Offset = "0xD6B410", VA = "0x180D6C410", Slot = "13")]
int IConvertible.ToInt32(IFormatProvider provider)
{
return 0;
}
/// <summary>This conversion is not supported. Attempting to use this method throws an <see cref="T:System.InvalidCastException" />.</summary>
/// <param name="provider">An object that implements the <see cref="T:System.IFormatProvider" /> interface. (This parameter is not used; specify <see langword="null" />.)</param>
/// <returns>The return value for this member is not used.</returns>
/// <exception cref="T:System.InvalidCastException">In all cases.</exception>
// Token: 0x0600077E RID: 1918 RVA: 0x00006C18 File Offset: 0x00004E18
[Token(Token = "0x600077E")]
[Address(RVA = "0xD6C8B0", Offset = "0xD6B8B0", VA = "0x180D6C8B0", Slot = "14")]
uint IConvertible.ToUInt32(IFormatProvider provider)
{
return 0U;
}
/// <summary>This conversion is not supported. Attempting to use this method throws an <see cref="T:System.InvalidCastException" />.</summary>
/// <param name="provider">An object that implements the <see cref="T:System.IFormatProvider" /> interface. (This parameter is not used; specify <see langword="null" />.)</param>
/// <returns>The return value for this member is not used.</returns>
/// <exception cref="T:System.InvalidCastException">In all cases.</exception>
// Token: 0x0600077F RID: 1919 RVA: 0x00006C30 File Offset: 0x00004E30
[Token(Token = "0x600077F")]
[Address(RVA = "0xD6C4E0", Offset = "0xD6B4E0", VA = "0x180D6C4E0", Slot = "15")]
long IConvertible.ToInt64(IFormatProvider provider)
{
return 0L;
}
/// <summary>This conversion is not supported. Attempting to use this method throws an <see cref="T:System.InvalidCastException" />.</summary>
/// <param name="provider">An object that implements the <see cref="T:System.IFormatProvider" /> interface. (This parameter is not used; specify <see langword="null" />.)</param>
/// <returns>The return value for this member is not used.</returns>
/// <exception cref="T:System.InvalidCastException">In all cases.</exception>
// Token: 0x06000780 RID: 1920 RVA: 0x00006C48 File Offset: 0x00004E48
[Token(Token = "0x6000780")]
[Address(RVA = "0xD6C980", Offset = "0xD6B980", VA = "0x180D6C980", Slot = "16")]
ulong IConvertible.ToUInt64(IFormatProvider provider)
{
return 0UL;
}
/// <summary>This conversion is not supported. Attempting to use this method throws an <see cref="T:System.InvalidCastException" />.</summary>
/// <param name="provider">An object that implements the <see cref="T:System.IFormatProvider" /> interface. (This parameter is not used; specify <see langword="null" />.)</param>
/// <returns>The return value for this member is not used.</returns>
/// <exception cref="T:System.InvalidCastException">In all cases.</exception>
// Token: 0x06000781 RID: 1921 RVA: 0x00006C60 File Offset: 0x00004E60
[Token(Token = "0x6000781")]
[Address(RVA = "0xD6C680", Offset = "0xD6B680", VA = "0x180D6C680", Slot = "17")]
float IConvertible.ToSingle(IFormatProvider provider)
{
return 0f;
}
/// <summary>This conversion is not supported. Attempting to use this method throws an <see cref="T:System.InvalidCastException" />.</summary>
/// <param name="provider">An object that implements the <see cref="T:System.IFormatProvider" /> interface. (This parameter is not used; specify <see langword="null" />.)</param>
/// <returns>The return value for this member is not used.</returns>
/// <exception cref="T:System.InvalidCastException">In all cases.</exception>
// Token: 0x06000782 RID: 1922 RVA: 0x00006C78 File Offset: 0x00004E78
[Token(Token = "0x6000782")]
[Address(RVA = "0xD6C270", Offset = "0xD6B270", VA = "0x180D6C270", Slot = "18")]
double IConvertible.ToDouble(IFormatProvider provider)
{
return 0.0;
}
/// <summary>This conversion is not supported. Attempting to use this method throws an <see cref="T:System.InvalidCastException" />.</summary>
/// <param name="provider">An object that implements the <see cref="T:System.IFormatProvider" /> interface. (This parameter is not used; specify <see langword="null" />.)</param>
/// <returns>The return value for this member is not used.</returns>
/// <exception cref="T:System.InvalidCastException">In all cases.</exception>
// Token: 0x06000783 RID: 1923 RVA: 0x00006C90 File Offset: 0x00004E90
[Token(Token = "0x6000783")]
[Address(RVA = "0xD6C1A0", Offset = "0xD6B1A0", VA = "0x180D6C1A0", Slot = "19")]
decimal IConvertible.ToDecimal(IFormatProvider provider)
{
return 0m;
}
/// <summary>Returns the current <see cref="T:System.DateTime" /> object.</summary>
/// <param name="provider">An object that implements the <see cref="T:System.IFormatProvider" /> interface. (This parameter is not used; specify <see langword="null" />.)</param>
/// <returns>The current object.</returns>
// Token: 0x06000784 RID: 1924 RVA: 0x00006CA8 File Offset: 0x00004EA8
[Token(Token = "0x6000784")]
[Address(RVA = "0x63E630", Offset = "0x63D630", VA = "0x18063E630", Slot = "20")]
DateTime IConvertible.ToDateTime(IFormatProvider provider)
{
return default(DateTime);
}
/// <summary>Converts the current <see cref="T:System.DateTime" /> object to an object of a specified type.</summary>
/// <param name="type">The desired type.</param>
/// <param name="provider">An object that implements the <see cref="T:System.IFormatProvider" /> interface. (This parameter is not used; specify <see langword="null" />.)</param>
/// <returns>An object of the type specified by the <paramref name="type" /> parameter, with a value equivalent to the current <see cref="T:System.DateTime" /> object.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="type" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.InvalidCastException">This conversion is not supported for the <see cref="T:System.DateTime" /> type.</exception>
// Token: 0x06000785 RID: 1925 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6000785")]
[Address(RVA = "0xD6C750", Offset = "0xD6B750", VA = "0x180D6C750", Slot = "22")]
object IConvertible.ToType(Type type, IFormatProvider provider)
{
return null;
}
// Token: 0x06000786 RID: 1926 RVA: 0x00006CC0 File Offset: 0x00004EC0
[Token(Token = "0x6000786")]
[Address(RVA = "0xD6D300", Offset = "0xD6C300", VA = "0x180D6D300")]
internal static bool TryCreate(int year, int month, int day, int hour, int minute, int second, int millisecond, out DateTime result)
{
return default(bool);
}
// Token: 0x040002EB RID: 747
[Token(Token = "0x40002EB")]
private const long TicksPerMillisecond = 10000L;
// Token: 0x040002EC RID: 748
[Token(Token = "0x40002EC")]
private const long TicksPerSecond = 10000000L;
// Token: 0x040002ED RID: 749
[Token(Token = "0x40002ED")]
private const long TicksPerMinute = 600000000L;
// Token: 0x040002EE RID: 750
[Token(Token = "0x40002EE")]
private const long TicksPerHour = 36000000000L;
// Token: 0x040002EF RID: 751
[Token(Token = "0x40002EF")]
private const long TicksPerDay = 864000000000L;
// Token: 0x040002F0 RID: 752
[Token(Token = "0x40002F0")]
private const int MillisPerSecond = 1000;
// Token: 0x040002F1 RID: 753
[Token(Token = "0x40002F1")]
private const int MillisPerMinute = 60000;
// Token: 0x040002F2 RID: 754
[Token(Token = "0x40002F2")]
private const int MillisPerHour = 3600000;
// Token: 0x040002F3 RID: 755
[Token(Token = "0x40002F3")]
private const int MillisPerDay = 86400000;
// Token: 0x040002F4 RID: 756
[Token(Token = "0x40002F4")]
private const int DaysPerYear = 365;
// Token: 0x040002F5 RID: 757
[Token(Token = "0x40002F5")]
private const int DaysPer4Years = 1461;
// Token: 0x040002F6 RID: 758
[Token(Token = "0x40002F6")]
private const int DaysPer100Years = 36524;
// Token: 0x040002F7 RID: 759
[Token(Token = "0x40002F7")]
private const int DaysPer400Years = 146097;
// Token: 0x040002F8 RID: 760
[Token(Token = "0x40002F8")]
private const int DaysTo1601 = 584388;
// Token: 0x040002F9 RID: 761
[Token(Token = "0x40002F9")]
private const int DaysTo1899 = 693593;
// Token: 0x040002FA RID: 762
[Token(Token = "0x40002FA")]
internal const int DaysTo1970 = 719162;
// Token: 0x040002FB RID: 763
[Token(Token = "0x40002FB")]
private const int DaysTo10000 = 3652059;
// Token: 0x040002FC RID: 764
[Token(Token = "0x40002FC")]
internal const long MinTicks = 0L;
// Token: 0x040002FD RID: 765
[Token(Token = "0x40002FD")]
internal const long MaxTicks = 3155378975999999999L;
// Token: 0x040002FE RID: 766
[Token(Token = "0x40002FE")]
private const long MaxMillis = 315537897600000L;
// Token: 0x040002FF RID: 767
[Token(Token = "0x40002FF")]
private const long FileTimeOffset = 504911232000000000L;
// Token: 0x04000300 RID: 768
[Token(Token = "0x4000300")]
private const long DoubleDateOffset = 599264352000000000L;
// Token: 0x04000301 RID: 769
[Token(Token = "0x4000301")]
private const long OADateMinAsTicks = 31241376000000000L;
// Token: 0x04000302 RID: 770
[Token(Token = "0x4000302")]
private const double OADateMinAsDouble = -657435.0;
// Token: 0x04000303 RID: 771
[Token(Token = "0x4000303")]
private const double OADateMaxAsDouble = 2958466.0;
// Token: 0x04000304 RID: 772
[Token(Token = "0x4000304")]
private const int DatePartYear = 0;
// Token: 0x04000305 RID: 773
[Token(Token = "0x4000305")]
private const int DatePartDayOfYear = 1;
// Token: 0x04000306 RID: 774
[Token(Token = "0x4000306")]
private const int DatePartMonth = 2;
// Token: 0x04000307 RID: 775
[Token(Token = "0x4000307")]
private const int DatePartDay = 3;
// Token: 0x04000308 RID: 776
[Token(Token = "0x4000308")]
private static readonly int[] DaysToMonth365;
// Token: 0x04000309 RID: 777
[Token(Token = "0x4000309")]
private static readonly int[] DaysToMonth366;
/// <summary>Represents the smallest possible value of <see cref="T:System.DateTime" />. This field is read-only.</summary>
// Token: 0x0400030A RID: 778
[Token(Token = "0x400030A")]
public static readonly DateTime MinValue;
/// <summary>Represents the largest possible value of <see cref="T:System.DateTime" />. This field is read-only.</summary>
// Token: 0x0400030B RID: 779
[Token(Token = "0x400030B")]
public static readonly DateTime MaxValue;
// Token: 0x0400030C RID: 780
[Token(Token = "0x400030C")]
private const ulong TicksMask = 4611686018427387903UL;
// Token: 0x0400030D RID: 781
[Token(Token = "0x400030D")]
private const ulong FlagsMask = 13835058055282163712UL;
// Token: 0x0400030E RID: 782
[Token(Token = "0x400030E")]
private const ulong LocalMask = 9223372036854775808UL;
// Token: 0x0400030F RID: 783
[Token(Token = "0x400030F")]
private const long TicksCeiling = 4611686018427387904L;
// Token: 0x04000310 RID: 784
[Token(Token = "0x4000310")]
private const ulong KindUnspecified = 0UL;
// Token: 0x04000311 RID: 785
[Token(Token = "0x4000311")]
private const ulong KindUtc = 4611686018427387904UL;
// Token: 0x04000312 RID: 786
[Token(Token = "0x4000312")]
private const ulong KindLocal = 9223372036854775808UL;
// Token: 0x04000313 RID: 787
[Token(Token = "0x4000313")]
private const ulong KindLocalAmbiguousDst = 13835058055282163712UL;
// Token: 0x04000314 RID: 788
[Token(Token = "0x4000314")]
private const int KindShift = 62;
// Token: 0x04000315 RID: 789
[Token(Token = "0x4000315")]
private const string TicksField = "ticks";
// Token: 0x04000316 RID: 790
[Token(Token = "0x4000316")]
private const string DateDataField = "dateData";
// Token: 0x04000317 RID: 791
[global::Cpp2IlInjected.FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000317")]
private ulong dateData;
}
}