using System; using System.Globalization; using System.Runtime.InteropServices; using System.Runtime.Serialization; using Cpp2IlInjected; namespace System { /// Represents an instant in time, typically expressed as a date and time of day. // Token: 0x020000CF RID: 207 [Token(Token = "0x20000CF")] [Serializable] [StructLayout(3)] public struct DateTime : IComparable, IFormattable, IConvertible, ISerializable, IComparable, IEquatable { /// Initializes a new instance of the structure to a specified number of 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. /// /// is less than or greater than . // Token: 0x060006F8 RID: 1784 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60006F8")] [Address(RVA = "0x2AA1710", Offset = "0x2AA0510", VA = "0x182AA1710")] public DateTime(long ticks) { } // Token: 0x060006F9 RID: 1785 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60006F9")] [Address(RVA = "0x461A30", Offset = "0x460830", VA = "0x180461A30")] private DateTime(ulong dateData) { } /// Initializes a new instance of the structure to a specified number of ticks and to Coordinated Universal Time (UTC) or local time. /// 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. /// One of the enumeration values that indicates whether specifies a local time, Coordinated Universal Time (UTC), or neither. /// /// is less than or greater than . /// /// is not one of the values. // Token: 0x060006FA RID: 1786 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60006FA")] [Address(RVA = "0x2AA1B30", Offset = "0x2AA0930", VA = "0x182AA1B30")] public DateTime(long ticks, DateTimeKind kind) { } // Token: 0x060006FB RID: 1787 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60006FB")] [Address(RVA = "0x2AA2190", Offset = "0x2AA0F90", VA = "0x182AA2190")] internal DateTime(long ticks, DateTimeKind kind, bool isAmbiguousDst) { } /// Initializes a new instance of the structure to the specified year, month, and day. /// The year (1 through 9999). /// The month (1 through 12). /// The day (1 through the number of days in ). /// /// is less than 1 or greater than 9999. /// -or- /// is less than 1 or greater than 12. /// -or- /// is less than 1 or greater than the number of days in . // Token: 0x060006FC RID: 1788 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60006FC")] [Address(RVA = "0x2AA27D0", Offset = "0x2AA15D0", VA = "0x182AA27D0")] public DateTime(int year, int month, int day) { } /// Initializes a new instance of the structure to the specified year, month, and day for the specified calendar. /// The year (1 through the number of years in ). /// The month (1 through the number of months in ). /// The day (1 through the number of days in ). /// The calendar that is used to interpret , , and . /// /// is . /// /// is not in the range supported by . /// -or- /// is less than 1 or greater than the number of months in . /// -or- /// is less than 1 or greater than the number of days in . // Token: 0x060006FD RID: 1789 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60006FD")] [Address(RVA = "0x2AA1EC0", Offset = "0x2AA0CC0", VA = "0x182AA1EC0")] public DateTime(int year, int month, int day, Calendar calendar) { } /// Initializes a new instance of the structure to the specified year, month, day, hour, minute, and second. /// The year (1 through 9999). /// The month (1 through 12). /// The day (1 through the number of days in ). /// The hours (0 through 23). /// The minutes (0 through 59). /// The seconds (0 through 59). /// /// is less than 1 or greater than 9999. /// -or- /// is less than 1 or greater than 12. /// -or- /// is less than 1 or greater than the number of days in . /// -or- /// is less than 0 or greater than 23. /// -or- /// is less than 0 or greater than 59. /// -or- /// is less than 0 or greater than 59. // Token: 0x060006FE RID: 1790 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60006FE")] [Address(RVA = "0x2AA1F00", Offset = "0x2AA0D00", VA = "0x182AA1F00")] public DateTime(int year, int month, int day, int hour, int minute, int second) { } /// Initializes a new instance of the structure to the specified year, month, day, hour, minute, second, and Coordinated Universal Time (UTC) or local time. /// The year (1 through 9999). /// The month (1 through 12). /// The day (1 through the number of days in ). /// The hours (0 through 23). /// The minutes (0 through 59). /// The seconds (0 through 59). /// One of the enumeration values that indicates whether , , , , and specify a local time, Coordinated Universal Time (UTC), or neither. /// /// is less than 1 or greater than 9999. /// -or- /// is less than 1 or greater than 12. /// -or- /// is less than 1 or greater than the number of days in . /// -or- /// is less than 0 or greater than 23. /// -or- /// is less than 0 or greater than 59. /// -or- /// is less than 0 or greater than 59. /// /// is not one of the values. // Token: 0x060006FF RID: 1791 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60006FF")] [Address(RVA = "0x2AA2480", Offset = "0x2AA1280", VA = "0x182AA2480")] public DateTime(int year, int month, int day, int hour, int minute, int second, DateTimeKind kind) { } /// Initializes a new instance of the structure to the specified year, month, day, hour, minute, and second for the specified calendar. /// The year (1 through the number of years in ). /// The month (1 through the number of months in ). /// The day (1 through the number of days in ). /// The hours (0 through 23). /// The minutes (0 through 59). /// The seconds (0 through 59). /// The calendar that is used to interpret , , and . /// /// is . /// /// is not in the range supported by . /// -or- /// is less than 1 or greater than the number of months in . /// -or- /// is less than 1 or greater than the number of days in . /// -or- /// is less than 0 or greater than 23 /// -or- /// is less than 0 or greater than 59. /// -or- /// is less than 0 or greater than 59. // Token: 0x06000700 RID: 1792 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000700")] [Address(RVA = "0x2AA17A0", Offset = "0x2AA05A0", VA = "0x182AA17A0")] public DateTime(int year, int month, int day, int hour, int minute, int second, Calendar calendar) { } /// Initializes a new instance of the structure to the specified year, month, day, hour, minute, second, and millisecond. /// The year (1 through 9999). /// The month (1 through 12). /// The day (1 through the number of days in ). /// The hours (0 through 23). /// The minutes (0 through 59). /// The seconds (0 through 59). /// The milliseconds (0 through 999). /// /// is less than 1 or greater than 9999. /// -or- /// is less than 1 or greater than 12. /// -or- /// is less than 1 or greater than the number of days in . /// -or- /// is less than 0 or greater than 23. /// -or- /// is less than 0 or greater than 59. /// -or- /// is less than 0 or greater than 59. /// -or- /// is less than 0 or greater than 999. // Token: 0x06000701 RID: 1793 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000701")] [Address(RVA = "0x2AA1FA0", Offset = "0x2AA0DA0", VA = "0x182AA1FA0")] public DateTime(int year, int month, int day, int hour, int minute, int second, int millisecond) { } /// Initializes a new instance of the structure to the specified year, month, day, hour, minute, second, millisecond, and Coordinated Universal Time (UTC) or local time. /// The year (1 through 9999). /// The month (1 through 12). /// The day (1 through the number of days in ). /// The hours (0 through 23). /// The minutes (0 through 59). /// The seconds (0 through 59). /// The milliseconds (0 through 999). /// One of the enumeration values that indicates whether , , , , , , and specify a local time, Coordinated Universal Time (UTC), or neither. /// /// is less than 1 or greater than 9999. /// -or- /// is less than 1 or greater than 12. /// -or- /// is less than 1 or greater than the number of days in . /// -or- /// is less than 0 or greater than 23. /// -or- /// is less than 0 or greater than 59. /// -or- /// is less than 0 or greater than 59. /// -or- /// is less than 0 or greater than 999. /// /// is not one of the values. // Token: 0x06000702 RID: 1794 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000702")] [Address(RVA = "0x2AA2580", Offset = "0x2AA1380", VA = "0x182AA2580")] public DateTime(int year, int month, int day, int hour, int minute, int second, int millisecond, DateTimeKind kind) { } /// Initializes a new instance of the structure to the specified year, month, day, hour, minute, second, and millisecond for the specified calendar. /// The year (1 through the number of years in ). /// The month (1 through the number of months in ). /// The day (1 through the number of days in ). /// The hours (0 through 23). /// The minutes (0 through 59). /// The seconds (0 through 59). /// The milliseconds (0 through 999). /// The calendar that is used to interpret , , and . /// /// is . /// /// is not in the range supported by . /// -or- /// is less than 1 or greater than the number of months in . /// -or- /// is less than 1 or greater than the number of days in . /// -or- /// is less than 0 or greater than 23. /// -or- /// is less than 0 or greater than 59. /// -or- /// is less than 0 or greater than 59. /// -or- /// is less than 0 or greater than 999. // Token: 0x06000703 RID: 1795 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000703")] [Address(RVA = "0x2AA2240", Offset = "0x2AA1040", VA = "0x182AA2240")] public DateTime(int year, int month, int day, int hour, int minute, int second, int millisecond, Calendar calendar) { } /// Initializes a new instance of the structure to the specified year, month, day, hour, minute, second, millisecond, and Coordinated Universal Time (UTC) or local time for the specified calendar. /// The year (1 through the number of years in ). /// The month (1 through the number of months in ). /// The day (1 through the number of days in ). /// The hours (0 through 23). /// The minutes (0 through 59). /// The seconds (0 through 59). /// The milliseconds (0 through 999). /// The calendar that is used to interpret , , and . /// One of the enumeration values that indicates whether , , , , , , and specify a local time, Coordinated Universal Time (UTC), or neither. /// /// is . /// /// is not in the range supported by . /// -or- /// is less than 1 or greater than the number of months in . /// -or- /// is less than 1 or greater than the number of days in . /// -or- /// is less than 0 or greater than 23. /// -or- /// is less than 0 or greater than 59. /// -or- /// is less than 0 or greater than 59. /// -or- /// is less than 0 or greater than 999. /// /// is not one of the values. // Token: 0x06000704 RID: 1796 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000704")] [Address(RVA = "0x2AA1890", Offset = "0x2AA0690", VA = "0x182AA1890")] public DateTime(int year, int month, int day, int hour, int minute, int second, int millisecond, Calendar calendar, DateTimeKind kind) { } // Token: 0x06000705 RID: 1797 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000705")] [Address(RVA = "0x2AA1C20", Offset = "0x2AA0A20", VA = "0x182AA1C20")] private DateTime(SerializationInfo info, StreamingContext context) { } // Token: 0x170000A1 RID: 161 // (get) Token: 0x06000706 RID: 1798 RVA: 0x00006348 File Offset: 0x00004548 [Token(Token = "0x170000A1")] internal long InternalTicks { [Token(Token = "0x6000706")] [Address(RVA = "0x2AA2980", Offset = "0x2AA1780", VA = "0x182AA2980")] get { return 0L; } } // Token: 0x170000A2 RID: 162 // (get) Token: 0x06000707 RID: 1799 RVA: 0x00006360 File Offset: 0x00004560 [Token(Token = "0x170000A2")] private ulong InternalKind { [Token(Token = "0x6000707")] [Address(RVA = "0x2AA2960", Offset = "0x2AA1760", VA = "0x182AA2960")] get { return 0UL; } } /// Returns a new that adds the value of the specified to the value of this instance. /// A positive or negative time interval. /// An object whose value is the sum of the date and time represented by this instance and the time interval represented by . /// The resulting is less than or greater than . // Token: 0x06000708 RID: 1800 RVA: 0x00006378 File Offset: 0x00004578 [Token(Token = "0x6000708")] [Address(RVA = "0x2A9E390", Offset = "0x2A9D190", VA = "0x182A9E390")] public DateTime Add(TimeSpan value) { return default(DateTime); } // Token: 0x06000709 RID: 1801 RVA: 0x00006390 File Offset: 0x00004590 [Token(Token = "0x6000709")] [Address(RVA = "0x2A9E3A0", Offset = "0x2A9D1A0", VA = "0x182A9E3A0")] private DateTime Add(double value, int scale) { return default(DateTime); } /// Returns a new that adds the specified number of days to the value of this instance. /// A number of whole and fractional days. The parameter can be negative or positive. /// An object whose value is the sum of the date and time represented by this instance and the number of days represented by . /// The resulting is less than or greater than . // Token: 0x0600070A RID: 1802 RVA: 0x000063A8 File Offset: 0x000045A8 [Token(Token = "0x600070A")] [Address(RVA = "0x2A9DE80", Offset = "0x2A9CC80", VA = "0x182A9DE80")] public DateTime AddDays(double value) { return default(DateTime); } /// Returns a new that adds the specified number of hours to the value of this instance. /// A number of whole and fractional hours. The parameter can be negative or positive. /// An object whose value is the sum of the date and time represented by this instance and the number of hours represented by . /// The resulting is less than or greater than . // Token: 0x0600070B RID: 1803 RVA: 0x000063C0 File Offset: 0x000045C0 [Token(Token = "0x600070B")] [Address(RVA = "0x2A9DE90", Offset = "0x2A9CC90", VA = "0x182A9DE90")] public DateTime AddHours(double value) { return default(DateTime); } /// Returns a new that adds the specified number of milliseconds to the value of this instance. /// A number of whole and fractional milliseconds. The parameter can be negative or positive. Note that this value is rounded to the nearest integer. /// An object whose value is the sum of the date and time represented by this instance and the number of milliseconds represented by . /// The resulting is less than or greater than . // Token: 0x0600070C RID: 1804 RVA: 0x000063D8 File Offset: 0x000045D8 [Token(Token = "0x600070C")] [Address(RVA = "0x2A9DEA0", Offset = "0x2A9CCA0", VA = "0x182A9DEA0")] public DateTime AddMilliseconds(double value) { return default(DateTime); } /// Returns a new that adds the specified number of minutes to the value of this instance. /// A number of whole and fractional minutes. The parameter can be negative or positive. /// An object whose value is the sum of the date and time represented by this instance and the number of minutes represented by . /// The resulting is less than or greater than . // Token: 0x0600070D RID: 1805 RVA: 0x000063F0 File Offset: 0x000045F0 [Token(Token = "0x600070D")] [Address(RVA = "0x2A9DEB0", Offset = "0x2A9CCB0", VA = "0x182A9DEB0")] public DateTime AddMinutes(double value) { return default(DateTime); } /// Returns a new that adds the specified number of months to the value of this instance. /// A number of months. The parameter can be negative or positive. /// An object whose value is the sum of the date and time represented by this instance and . /// The resulting is less than or greater than . /// -or- /// is less than -120,000 or greater than 120,000. // Token: 0x0600070E RID: 1806 RVA: 0x00006408 File Offset: 0x00004608 [Token(Token = "0x600070E")] [Address(RVA = "0x2A9DEC0", Offset = "0x2A9CCC0", VA = "0x182A9DEC0")] public DateTime AddMonths(int months) { return default(DateTime); } /// Returns a new that adds the specified number of seconds to the value of this instance. /// A number of whole and fractional seconds. The parameter can be negative or positive. /// An object whose value is the sum of the date and time represented by this instance and the number of seconds represented by . /// The resulting is less than or greater than . // Token: 0x0600070F RID: 1807 RVA: 0x00006420 File Offset: 0x00004620 [Token(Token = "0x600070F")] [Address(RVA = "0x2A9E220", Offset = "0x2A9D020", VA = "0x182A9E220")] public DateTime AddSeconds(double value) { return default(DateTime); } /// Returns a new that adds the specified number of ticks to the value of this instance. /// A number of 100-nanosecond ticks. The parameter can be positive or negative. /// An object whose value is the sum of the date and time represented by this instance and the time represented by . /// The resulting is less than or greater than . // Token: 0x06000710 RID: 1808 RVA: 0x00006438 File Offset: 0x00004638 [Token(Token = "0x6000710")] [Address(RVA = "0x2A9E230", Offset = "0x2A9D030", VA = "0x182A9E230")] public DateTime AddTicks(long value) { return default(DateTime); } /// Returns a new that adds the specified number of years to the value of this instance. /// A number of years. The parameter can be negative or positive. /// An object whose value is the sum of the date and time represented by this instance and the number of years represented by . /// /// or the resulting is less than or greater than . // Token: 0x06000711 RID: 1809 RVA: 0x00006450 File Offset: 0x00004650 [Token(Token = "0x6000711")] [Address(RVA = "0x2A9E2F0", Offset = "0x2A9D0F0", VA = "0x182A9E2F0")] public DateTime AddYears(int value) { return default(DateTime); } /// Compares two instances of and returns an integer that indicates whether the first instance is earlier than, the same as, or later than the second instance. /// The first object to compare. /// The second object to compare. /// A signed number indicating the relative values of and . /// Value Type /// /// Condition /// /// Less than zero /// /// is earlier than . /// /// Zero /// /// is the same as . /// /// Greater than zero /// /// is later than . // Token: 0x06000712 RID: 1810 RVA: 0x00006468 File Offset: 0x00004668 [Token(Token = "0x6000712")] [Address(RVA = "0x2A9E630", Offset = "0x2A9D430", VA = "0x182A9E630")] public static int Compare(DateTime t1, DateTime t2) { return 0; } /// Compares the value of this instance to a specified object that contains a specified value, and returns an integer that indicates whether this instance is earlier than, the same as, or later than the specified value. /// A boxed object to compare, or . /// A signed number indicating the relative values of this instance and . /// Value /// /// Description /// /// Less than zero /// /// This instance is earlier than . /// /// Zero /// /// This instance is the same as . /// /// Greater than zero /// /// This instance is later than , or is . /// /// is not a . // Token: 0x06000713 RID: 1811 RVA: 0x00006480 File Offset: 0x00004680 [Token(Token = "0x6000713")] [Address(RVA = "0x2A9E550", Offset = "0x2A9D350", VA = "0x182A9E550", Slot = "4")] public int CompareTo(object value) { return 0; } /// Compares the value of this instance to a specified value and returns an integer that indicates whether this instance is earlier than, the same as, or later than the specified value. /// The object to compare to the current instance. /// A signed number indicating the relative values of this instance and the parameter. /// Value /// /// Description /// /// Less than zero /// /// This instance is earlier than . /// /// Zero /// /// This instance is the same as . /// /// Greater than zero /// /// This instance is later than . // Token: 0x06000714 RID: 1812 RVA: 0x00006498 File Offset: 0x00004698 [Token(Token = "0x6000714")] [Address(RVA = "0x2A9E520", Offset = "0x2A9D320", VA = "0x182A9E520", Slot = "24")] public int CompareTo(DateTime value) { return 0; } // Token: 0x06000715 RID: 1813 RVA: 0x000064B0 File Offset: 0x000046B0 [Token(Token = "0x6000715")] [Address(RVA = "0x2A9E650", Offset = "0x2A9D450", VA = "0x182A9E650")] private static long DateToTicks(int year, int month, int day) { return 0L; } // Token: 0x06000716 RID: 1814 RVA: 0x000064C8 File Offset: 0x000046C8 [Token(Token = "0x6000716")] [Address(RVA = "0x2AA0710", Offset = "0x2A9F510", VA = "0x182AA0710")] private static long TimeToTicks(int hour, int minute, int second) { return 0L; } /// Returns the number of days in the specified month and year. /// The year. /// The month (a number ranging from 1 to 12). /// The number of days in for the specified . /// For example, if equals 2 for February, the return value is 28 or 29 depending upon whether is a leap year. /// /// is less than 1 or greater than 12. /// -or- /// is less than 1 or greater than 9999. // Token: 0x06000717 RID: 1815 RVA: 0x000064E0 File Offset: 0x000046E0 [Token(Token = "0x6000717")] [Address(RVA = "0x2A9E840", Offset = "0x2A9D640", VA = "0x182A9E840")] public static int DaysInMonth(int year, int month) { return 0; } // Token: 0x06000718 RID: 1816 RVA: 0x000064F8 File Offset: 0x000046F8 [Token(Token = "0x6000718")] [Address(RVA = "0x2A9E9A0", Offset = "0x2A9D7A0", VA = "0x182A9E9A0")] internal static long DoubleDateToTicks(double value) { return 0L; } /// Returns a value indicating whether this instance is equal to a specified object. /// The object to compare to this instance. /// /// if is an instance of and equals the value of this instance; otherwise, . // Token: 0x06000719 RID: 1817 RVA: 0x00006510 File Offset: 0x00004710 [Token(Token = "0x6000719")] [Address(RVA = "0x2A9EB30", Offset = "0x2A9D930", VA = "0x182A9EB30", Slot = "0")] public override bool Equals(object value) { return default(bool); } /// Returns a value indicating whether the value of this instance is equal to the value of the specified instance. /// The object to compare to this instance. /// /// if the parameter equals the value of this instance; otherwise, . // Token: 0x0600071A RID: 1818 RVA: 0x00006528 File Offset: 0x00004728 [Token(Token = "0x600071A")] [Address(RVA = "0x2A9EB10", Offset = "0x2A9D910", VA = "0x182A9EB10", Slot = "25")] public bool Equals(DateTime value) { return default(bool); } /// Deserializes a 64-bit binary value and recreates an original serialized object. /// A 64-bit signed integer that encodes the property in a 2-bit field and the property in a 62-bit field. /// An object that is equivalent to the object that was serialized by the method. /// /// is less than or greater than . // Token: 0x0600071B RID: 1819 RVA: 0x00006540 File Offset: 0x00004740 [Token(Token = "0x600071B")] [Address(RVA = "0x2A9EC70", Offset = "0x2A9DA70", VA = "0x182A9EC70")] public static DateTime FromBinary(long dateData) { return default(DateTime); } // Token: 0x0600071C RID: 1820 RVA: 0x00006558 File Offset: 0x00004758 [Token(Token = "0x600071C")] [Address(RVA = "0x2A9EBD0", Offset = "0x2A9D9D0", VA = "0x182A9EBD0")] internal static DateTime FromBinaryRaw(long dateData) { return default(DateTime); } /// Converts the specified Windows file time to an equivalent local time. /// A Windows file time expressed in ticks. /// An object that represents the local time equivalent of the date and time represented by the parameter. /// /// is less than 0 or represents a time greater than . // Token: 0x0600071D RID: 1821 RVA: 0x00006570 File Offset: 0x00004770 [Token(Token = "0x600071D")] [Address(RVA = "0x2A9EFA0", Offset = "0x2A9DDA0", VA = "0x182A9EFA0")] public static DateTime FromFileTime(long fileTime) { return default(DateTime); } /// Converts the specified Windows file time to an equivalent UTC time. /// A Windows file time expressed in ticks. /// An object that represents the UTC time equivalent of the date and time represented by the parameter. /// /// is less than 0 or represents a time greater than . // Token: 0x0600071E RID: 1822 RVA: 0x00006588 File Offset: 0x00004788 [Token(Token = "0x600071E")] [Address(RVA = "0x2A9EEE0", Offset = "0x2A9DCE0", VA = "0x182A9EEE0")] public static DateTime FromFileTimeUtc(long fileTime) { return default(DateTime); } /// Returns a equivalent to the specified OLE Automation Date. /// An OLE Automation Date value. /// An object that represents the same date and time as . /// The date is not a valid OLE Automation Date value. // Token: 0x0600071F RID: 1823 RVA: 0x000065A0 File Offset: 0x000047A0 [Token(Token = "0x600071F")] [Address(RVA = "0x2A9F0A0", Offset = "0x2A9DEA0", VA = "0x182A9F0A0")] public static DateTime FromOADate(double d) { return default(DateTime); } /// Populates a object with the data needed to serialize the current object. /// The object to populate with data. /// The destination for this serialization. (This parameter is not used; specify .) /// /// is . // Token: 0x06000720 RID: 1824 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000720")] [Address(RVA = "0x2AA0660", Offset = "0x2A9F460", VA = "0x182AA0660", Slot = "23")] void ISerializable.GetObjectData(SerializationInfo info, StreamingContext context) { } /// Indicates whether this instance of is within the daylight saving time range for the current time zone. /// /// if the value of the property is or and the value of this instance of is within the daylight saving time range for the local time zone; if is . // Token: 0x06000721 RID: 1825 RVA: 0x000065B8 File Offset: 0x000047B8 [Token(Token = "0x6000721")] [Address(RVA = "0x2A9F4B0", Offset = "0x2A9E2B0", VA = "0x182A9F4B0")] public bool IsDaylightSavingTime() { return default(bool); } /// Creates a new object that has the same number of ticks as the specified , but is designated as either local time, Coordinated Universal Time (UTC), or neither, as indicated by the specified value. /// A date and time. /// One of the enumeration values that indicates whether the new object represents local time, UTC, or neither. /// A new object that has the same number of ticks as the object represented by the parameter and the value specified by the parameter. // Token: 0x06000722 RID: 1826 RVA: 0x000065D0 File Offset: 0x000047D0 [Token(Token = "0x6000722")] [Address(RVA = "0x2A9FAE0", Offset = "0x2A9E8E0", VA = "0x182A9FAE0")] public static DateTime SpecifyKind(DateTime value, DateTimeKind kind) { return default(DateTime); } /// Serializes the current object to a 64-bit binary value that subsequently can be used to recreate the object. /// A 64-bit signed integer that encodes the and properties. // Token: 0x06000723 RID: 1827 RVA: 0x000065E8 File Offset: 0x000047E8 [Token(Token = "0x6000723")] [Address(RVA = "0x2AA07D0", Offset = "0x2A9F5D0", VA = "0x182AA07D0")] public long ToBinary() { return 0L; } // Token: 0x06000724 RID: 1828 RVA: 0x00006600 File Offset: 0x00004800 [Token(Token = "0x6000724")] [Address(RVA = "0x41D090", Offset = "0x41BE90", VA = "0x18041D090")] internal long ToBinaryRaw() { return 0L; } /// Gets the date component of this instance. /// A new object with the same date as this instance, and the time value set to 12:00:00 midnight (00:00:00). // Token: 0x170000A3 RID: 163 // (get) Token: 0x06000725 RID: 1829 RVA: 0x00006618 File Offset: 0x00004818 [Token(Token = "0x170000A3")] public DateTime Date { [Token(Token = "0x6000725")] [Address(RVA = "0x2AA2860", Offset = "0x2AA1660", VA = "0x182AA2860")] get { return default(DateTime); } } // Token: 0x06000726 RID: 1830 RVA: 0x00006630 File Offset: 0x00004830 [Token(Token = "0x6000726")] [Address(RVA = "0x2A9F260", Offset = "0x2A9E060", VA = "0x182A9F260")] private int GetDatePart(int part) { return 0; } /// Gets the day of the month represented by this instance. /// The day component, expressed as a value between 1 and 31. // Token: 0x170000A4 RID: 164 // (get) Token: 0x06000727 RID: 1831 RVA: 0x00006648 File Offset: 0x00004848 [Token(Token = "0x170000A4")] public int Day { [Token(Token = "0x6000727")] [Address(RVA = "0x2AA2900", Offset = "0x2AA1700", VA = "0x182AA2900")] get { return 0; } } /// Gets the day of the week represented by this instance. /// An enumerated constant that indicates the day of the week of this value. // Token: 0x170000A5 RID: 165 // (get) Token: 0x06000728 RID: 1832 RVA: 0x00006660 File Offset: 0x00004860 [Token(Token = "0x170000A5")] public DayOfWeek DayOfWeek { [Token(Token = "0x6000728")] [Address(RVA = "0x2AA28A0", Offset = "0x2AA16A0", VA = "0x182AA28A0")] get { return DayOfWeek.Sunday; } } /// Gets the day of the year represented by this instance. /// The day of the year, expressed as a value between 1 and 366. // Token: 0x170000A6 RID: 166 // (get) Token: 0x06000729 RID: 1833 RVA: 0x00006678 File Offset: 0x00004878 [Token(Token = "0x170000A6")] public int DayOfYear { [Token(Token = "0x6000729")] [Address(RVA = "0x2AA28F0", Offset = "0x2AA16F0", VA = "0x182AA28F0")] get { return 0; } } /// Returns the hash code for this instance. /// A 32-bit signed integer hash code. // Token: 0x0600072A RID: 1834 RVA: 0x00006690 File Offset: 0x00004890 [Token(Token = "0x600072A")] [Address(RVA = "0x2A9F460", Offset = "0x2A9E260", VA = "0x182A9F460", Slot = "2")] public override int GetHashCode() { return 0; } /// Gets the hour component of the date represented by this instance. /// The hour component, expressed as a value between 0 and 23. // Token: 0x170000A7 RID: 167 // (get) Token: 0x0600072B RID: 1835 RVA: 0x000066A8 File Offset: 0x000048A8 [Token(Token = "0x170000A7")] public int Hour { [Token(Token = "0x600072B")] [Address(RVA = "0x2AA2910", Offset = "0x2AA1710", VA = "0x182AA2910")] get { return 0; } } // Token: 0x0600072C RID: 1836 RVA: 0x000066C0 File Offset: 0x000048C0 [Token(Token = "0x600072C")] [Address(RVA = "0x2A9F490", Offset = "0x2A9E290", VA = "0x182A9F490")] internal bool IsAmbiguousDaylightSavingTime() { return default(bool); } /// Gets a value that indicates whether the time represented by this instance is based on local time, Coordinated Universal Time (UTC), or neither. /// One of the enumeration values that indicates what the current time represents. The default is . // Token: 0x170000A8 RID: 168 // (get) Token: 0x0600072D RID: 1837 RVA: 0x000066D8 File Offset: 0x000048D8 [Token(Token = "0x170000A8")] public DateTimeKind Kind { [Token(Token = "0x600072D")] [Address(RVA = "0x2AA29A0", Offset = "0x2AA17A0", VA = "0x182AA29A0")] get { return DateTimeKind.Unspecified; } } /// Gets the milliseconds component of the date represented by this instance. /// The milliseconds component, expressed as a value between 0 and 999. // Token: 0x170000A9 RID: 169 // (get) Token: 0x0600072E RID: 1838 RVA: 0x000066F0 File Offset: 0x000048F0 [Token(Token = "0x170000A9")] public int Millisecond { [Token(Token = "0x600072E")] [Address(RVA = "0x2AA29D0", Offset = "0x2AA17D0", VA = "0x182AA29D0")] get { return 0; } } /// Gets the minute component of the date represented by this instance. /// The minute component, expressed as a value between 0 and 59. // Token: 0x170000AA RID: 170 // (get) Token: 0x0600072F RID: 1839 RVA: 0x00006708 File Offset: 0x00004908 [Token(Token = "0x170000AA")] public int Minute { [Token(Token = "0x600072F")] [Address(RVA = "0x2AA2A20", Offset = "0x2AA1820", VA = "0x182AA2A20")] get { return 0; } } /// Gets the month component of the date represented by this instance. /// The month component, expressed as a value between 1 and 12. // Token: 0x170000AB RID: 171 // (get) Token: 0x06000730 RID: 1840 RVA: 0x00006720 File Offset: 0x00004920 [Token(Token = "0x170000AB")] public int Month { [Token(Token = "0x6000730")] [Address(RVA = "0x2AA2A70", Offset = "0x2AA1870", VA = "0x182AA2A70")] get { return 0; } } /// Gets a object that is set to the current date and time on this computer, expressed as the local time. /// An object whose value is the current local date and time. // Token: 0x170000AC RID: 172 // (get) Token: 0x06000731 RID: 1841 RVA: 0x00006738 File Offset: 0x00004938 [Token(Token = "0x170000AC")] public static DateTime Now { [Token(Token = "0x6000731")] [Address(RVA = "0x2AA2A80", Offset = "0x2AA1880", VA = "0x182AA2A80")] get { return default(DateTime); } } /// Gets a object that is set to the current date and time on this computer, expressed as the Coordinated Universal Time (UTC). /// An object whose value is the current UTC date and time. // Token: 0x170000AD RID: 173 // (get) Token: 0x06000732 RID: 1842 RVA: 0x00006750 File Offset: 0x00004950 [Token(Token = "0x170000AD")] public static DateTime UtcNow { [Token(Token = "0x6000732")] [Address(RVA = "0x2AA2D80", Offset = "0x2AA1B80", VA = "0x182AA2D80")] get { return default(DateTime); } } // Token: 0x06000733 RID: 1843 RVA: 0x00006768 File Offset: 0x00004968 [Token(Token = "0x6000733")] [Address(RVA = "0x2A9F480", Offset = "0x2A9E280", VA = "0x182A9F480")] internal static long GetSystemTimeAsFileTime() { return 0L; } /// Gets the seconds component of the date represented by this instance. /// The seconds component, expressed as a value between 0 and 59. // Token: 0x170000AE RID: 174 // (get) Token: 0x06000734 RID: 1844 RVA: 0x00006780 File Offset: 0x00004980 [Token(Token = "0x170000AE")] public int Second { [Token(Token = "0x6000734")] [Address(RVA = "0x2AA2C70", Offset = "0x2AA1A70", VA = "0x182AA2C70")] get { return 0; } } /// Gets the number of ticks that represent the date and time of this instance. /// The number of ticks that represent the date and time of this instance. The value is between and . // Token: 0x170000AF RID: 175 // (get) Token: 0x06000735 RID: 1845 RVA: 0x00006798 File Offset: 0x00004998 [Token(Token = "0x170000AF")] public long Ticks { [Token(Token = "0x6000735")] [Address(RVA = "0x2AA2980", Offset = "0x2AA1780", VA = "0x182AA2980")] get { return 0L; } } /// Gets the time of day for this instance. /// A time interval that represents the fraction of the day that has elapsed since midnight. // Token: 0x170000B0 RID: 176 // (get) Token: 0x06000736 RID: 1846 RVA: 0x000067B0 File Offset: 0x000049B0 [Token(Token = "0x170000B0")] public TimeSpan TimeOfDay { [Token(Token = "0x6000736")] [Address(RVA = "0x2AA2CC0", Offset = "0x2AA1AC0", VA = "0x182AA2CC0")] get { return default(TimeSpan); } } /// Gets the current date. /// An object that is set to today's date, with the time component set to 00:00:00. // Token: 0x170000B1 RID: 177 // (get) Token: 0x06000737 RID: 1847 RVA: 0x000067C8 File Offset: 0x000049C8 [Token(Token = "0x170000B1")] public static DateTime Today { [Token(Token = "0x6000737")] [Address(RVA = "0x2AA2CF0", Offset = "0x2AA1AF0", VA = "0x182AA2CF0")] get { return default(DateTime); } } /// Gets the year component of the date represented by this instance. /// The year, between 1 and 9999. // Token: 0x170000B2 RID: 178 // (get) Token: 0x06000738 RID: 1848 RVA: 0x000067E0 File Offset: 0x000049E0 [Token(Token = "0x170000B2")] public int Year { [Token(Token = "0x6000738")] [Address(RVA = "0x2AA2DF0", Offset = "0x2AA1BF0", VA = "0x182AA2DF0")] get { return 0; } } /// Returns an indication whether the specified year is a leap year. /// A 4-digit year. /// /// if is a leap year; otherwise, . /// /// is less than 1 or greater than 9999. // Token: 0x06000739 RID: 1849 RVA: 0x000067F8 File Offset: 0x000049F8 [Token(Token = "0x6000739")] [Address(RVA = "0x2A9F510", Offset = "0x2A9E310", VA = "0x182A9F510")] public static bool IsLeapYear(int year) { return default(bool); } /// Converts the string representation of a date and time to its equivalent by using the conventions of the current thread culture. /// A string that contains a date and time to convert. See The string to parse for more information. /// An object that is equivalent to the date and time contained in . /// /// is . /// /// does not contain a valid string representation of a date and time. // Token: 0x0600073A RID: 1850 RVA: 0x00006810 File Offset: 0x00004A10 [Token(Token = "0x600073A")] [Address(RVA = "0x2A9F9C0", Offset = "0x2A9E7C0", VA = "0x182A9F9C0")] public static DateTime Parse(string s) { return default(DateTime); } /// Converts the string representation of a date and time to its equivalent by using culture-specific format information. /// A string that contains a date and time to convert. See The string to parse for more information. /// An object that supplies culture-specific format information about . See Parsing and cultural conventions /// An object that is equivalent to the date and time contained in as specified by . /// /// is . /// /// does not contain a valid string representation of a date and time. // Token: 0x0600073B RID: 1851 RVA: 0x00006828 File Offset: 0x00004A28 [Token(Token = "0x600073B")] [Address(RVA = "0x2A9FA50", Offset = "0x2A9E850", VA = "0x182A9FA50")] public static DateTime Parse(string s, IFormatProvider provider) { return default(DateTime); } /// Converts the string representation of a date and time to its equivalent by using culture-specific format information and a formatting style. /// A string that contains a date and time to convert. See The string to parse for more information. /// An object that supplies culture-specific formatting information about . See Parsing and cultural conventions /// A bitwise combination of the enumeration values that indicates the style elements that can be present in 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 . /// An object that is equivalent to the date and time contained in , as specified by and . /// /// is . /// /// does not contain a valid string representation of a date and time. /// /// contains an invalid combination of values. For example, both and . // Token: 0x0600073C RID: 1852 RVA: 0x00006840 File Offset: 0x00004A40 [Token(Token = "0x600073C")] [Address(RVA = "0x2A9F910", Offset = "0x2A9E710", VA = "0x182A9F910")] public static DateTime Parse(string s, IFormatProvider provider, DateTimeStyles styles) { return default(DateTime); } /// Converts the specified string representation of a date and time to its equivalent using the specified format and culture-specific format information. The format of the string representation must match the specified format exactly. /// A string that contains a date and time to convert. /// A format specifier that defines the required format of . For more information, see the Remarks section. /// An object that supplies culture-specific format information about . /// An object that is equivalent to the date and time contained in , as specified by and . /// /// or is . /// /// or is an empty string. /// -or- /// does not contain a date and time that corresponds to the pattern specified in . /// -or- /// The hour component and the AM/PM designator in do not agree. // Token: 0x0600073D RID: 1853 RVA: 0x00006858 File Offset: 0x00004A58 [Token(Token = "0x600073D")] [Address(RVA = "0x2A9F5F0", Offset = "0x2A9E3F0", VA = "0x182A9F5F0")] public static DateTime ParseExact(string s, string format, IFormatProvider provider) { return default(DateTime); } /// Converts the specified string representation of a date and time to its 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. /// A string containing a date and time to convert. /// A format specifier that defines the required format of . For more information, see the Remarks section. /// An object that supplies culture-specific formatting information about . /// A bitwise combination of the enumeration values that provides additional information about , about style elements that may be present in , or about the conversion from to a value. A typical value to specify is . /// An object that is equivalent to the date and time contained in , as specified by , , and . /// /// or is . /// /// or is an empty string. /// -or- /// does not contain a date and time that corresponds to the pattern specified in . /// -or- /// The hour component and the AM/PM designator in do not agree. /// /// contains an invalid combination of values. For example, both and . // Token: 0x0600073E RID: 1854 RVA: 0x00006870 File Offset: 0x00004A70 [Token(Token = "0x600073E")] [Address(RVA = "0x2A9F840", Offset = "0x2A9E640", VA = "0x182A9F840")] public static DateTime ParseExact(string s, string format, IFormatProvider provider, DateTimeStyles style) { return default(DateTime); } /// Converts the specified string representation of a date and time to its 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. /// A string that contains a date and time to convert. /// An array of allowable formats of . For more information, see the Remarks section. /// An object that supplies culture-specific format information about . /// A bitwise combination of enumeration values that indicates the permitted format of . A typical value to specify is . /// An object that is equivalent to the date and time contained in , as specified by , , and . /// /// or is . /// /// is an empty string. /// -or- /// an element of is an empty string. /// -or- /// does not contain a date and time that corresponds to any element of . /// -or- /// The hour component and the AM/PM designator in do not agree. /// /// contains an invalid combination of values. For example, both and . // Token: 0x0600073F RID: 1855 RVA: 0x00006888 File Offset: 0x00004A88 [Token(Token = "0x600073F")] [Address(RVA = "0x2A9F6A0", Offset = "0x2A9E4A0", VA = "0x182A9F6A0")] public static DateTime ParseExact(string s, string[] formats, IFormatProvider provider, DateTimeStyles style) { return default(DateTime); } /// Subtracts the specified date and time from this instance. /// The date and time value to subtract. /// A time interval that is equal to the date and time represented by this instance minus the date and time represented by . /// The result is less than or greater than . // Token: 0x06000740 RID: 1856 RVA: 0x000068A0 File Offset: 0x00004AA0 [Token(Token = "0x6000740")] [Address(RVA = "0x2A9FB20", Offset = "0x2A9E920", VA = "0x182A9FB20")] public TimeSpan Subtract(DateTime value) { return default(TimeSpan); } /// Converts the value of the current object to a Windows file time. /// The value of the current object expressed as a Windows file time. /// The resulting file time would represent a date and time before 12:00 midnight January 1, 1601 C.E. UTC. // Token: 0x06000741 RID: 1857 RVA: 0x000068B8 File Offset: 0x00004AB8 [Token(Token = "0x6000741")] [Address(RVA = "0x2AA0900", Offset = "0x2A9F700", VA = "0x182AA0900")] public long ToFileTime() { return 0L; } /// Converts the value of the current object to a Windows file time. /// The value of the current object expressed as a Windows file time. /// The resulting file time would represent a date and time before 12:00 midnight January 1, 1601 C.E. UTC. // Token: 0x06000742 RID: 1858 RVA: 0x000068D0 File Offset: 0x00004AD0 [Token(Token = "0x6000742")] [Address(RVA = "0x2AA0850", Offset = "0x2A9F650", VA = "0x182AA0850")] public long ToFileTimeUtc() { return 0L; } /// Converts the value of the current object to local time. /// An object whose property is , and whose value is the local time equivalent to the value of the current object, or if the converted value is too large to be represented by a object, or if the converted value is too small to be represented as a object. // Token: 0x06000743 RID: 1859 RVA: 0x000068E8 File Offset: 0x00004AE8 [Token(Token = "0x6000743")] [Address(RVA = "0x2AA09C0", Offset = "0x2A9F7C0", VA = "0x182AA09C0")] public DateTime ToLocalTime() { return default(DateTime); } // Token: 0x06000744 RID: 1860 RVA: 0x00006900 File Offset: 0x00004B00 [Token(Token = "0x6000744")] [Address(RVA = "0x2AA09D0", Offset = "0x2A9F7D0", VA = "0x182AA09D0")] internal DateTime ToLocalTime(bool throwOnOverflow) { return default(DateTime); } /// Converts the value of the current object to its equivalent short date string representation. /// A string that contains the short date string representation of the current object. // Token: 0x06000745 RID: 1861 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x6000745")] [Address(RVA = "0x2AA0B70", Offset = "0x2A9F970", VA = "0x182AA0B70")] public string ToShortDateString() { return null; } /// Converts the value of the current object to its equivalent short time string representation. /// A string that contains the short time string representation of the current object. // Token: 0x06000746 RID: 1862 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x6000746")] [Address(RVA = "0x2AA0C00", Offset = "0x2A9FA00", VA = "0x182AA0C00")] public string ToShortTimeString() { return null; } /// Converts the value of the current object to its equivalent string representation using the formatting conventions of the current culture. /// A string representation of the value of the current object. /// The date and time is outside the range of dates supported by the calendar used by the current culture. // Token: 0x06000747 RID: 1863 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x6000747")] [Address(RVA = "0x2AA0E70", Offset = "0x2A9FC70", VA = "0x182AA0E70", Slot = "3")] public override string ToString() { return null; } /// Converts the value of the current object to its equivalent string representation using the specified format and the formatting conventions of the current culture. /// A standard or custom date and time format string. /// A string representation of value of the current object as specified by . /// The length of is 1, and it is not one of the format specifier characters defined for . /// -or- /// does not contain a valid custom format pattern. /// The date and time is outside the range of dates supported by the calendar used by the current culture. // Token: 0x06000748 RID: 1864 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x6000748")] [Address(RVA = "0x2AA0C90", Offset = "0x2A9FA90", VA = "0x182AA0C90")] public string ToString(string format) { return null; } /// Converts the value of the current object to its equivalent string representation using the specified culture-specific format information. /// An object that supplies culture-specific formatting information. /// A string representation of value of the current object as specified by . /// The date and time is outside the range of dates supported by the calendar used by . // Token: 0x06000749 RID: 1865 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x6000749")] [Address(RVA = "0x2AA0D30", Offset = "0x2A9FB30", VA = "0x182AA0D30", Slot = "21")] public string ToString(IFormatProvider provider) { return null; } /// Converts the value of the current object to its equivalent string representation using the specified format and culture-specific format information. /// A standard or custom date and time format string. /// An object that supplies culture-specific formatting information. /// A string representation of value of the current object as specified by and . /// The length of is 1, and it is not one of the format specifier characters defined for . /// -or- /// does not contain a valid custom format pattern. /// The date and time is outside the range of dates supported by the calendar used by . // Token: 0x0600074A RID: 1866 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x600074A")] [Address(RVA = "0x2AA0DD0", Offset = "0x2A9FBD0", VA = "0x182AA0DD0", Slot = "5")] public string ToString(string format, IFormatProvider provider) { return null; } /// Converts the value of the current object to Coordinated Universal Time (UTC). /// An object whose property is , and whose value is the UTC equivalent to the value of the current object, or if the converted value is too large to be represented by a object, or if the converted value is too small to be represented by a object. // Token: 0x0600074B RID: 1867 RVA: 0x00006918 File Offset: 0x00004B18 [Token(Token = "0x600074B")] [Address(RVA = "0x2AA0F00", Offset = "0x2A9FD00", VA = "0x182AA0F00")] public DateTime ToUniversalTime() { return default(DateTime); } /// Converts the specified string representation of a date and time to its equivalent and returns a value that indicates whether the conversion succeeded. /// A string containing a date and time to convert. /// When this method returns, contains the value equivalent to the date and time contained in , if the conversion succeeded, or if the conversion failed. The conversion fails if the parameter is , is an empty string (""), or does not contain a valid string representation of a date and time. This parameter is passed uninitialized. /// /// if the parameter was converted successfully; otherwise, . // Token: 0x0600074C RID: 1868 RVA: 0x00006930 File Offset: 0x00004B30 [Token(Token = "0x600074C")] [Address(RVA = "0x2AA1570", Offset = "0x2AA0370", VA = "0x182AA1570")] public static bool TryParse(string s, out DateTime result) { return default(bool); } /// Converts the specified string representation of a date and time to its equivalent using the specified culture-specific format information and formatting style, and returns a value that indicates whether the conversion succeeded. /// A string containing a date and time to convert. /// An object that supplies culture-specific formatting information about . /// 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 . /// When this method returns, contains the value equivalent to the date and time contained in , if the conversion succeeded, or if the conversion failed. The conversion fails if the parameter is , is an empty string (""), or does not contain a valid string representation of a date and time. This parameter is passed uninitialized. /// /// if the parameter was converted successfully; otherwise, . /// /// is not a valid value. /// -or- /// contains an invalid combination of values (for example, both and ). /// /// is a neutral culture and cannot be used in a parsing operation. // Token: 0x0600074D RID: 1869 RVA: 0x00006948 File Offset: 0x00004B48 [Token(Token = "0x600074D")] [Address(RVA = "0x2AA14A0", Offset = "0x2AA02A0", VA = "0x182AA14A0")] public static bool TryParse(string s, IFormatProvider provider, DateTimeStyles styles, out DateTime result) { return default(bool); } /// Converts the specified string representation of a date and time to its 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. /// A string containing a date and time to convert. /// The required format of . /// An object that supplies culture-specific formatting information about . /// A bitwise combination of one or more enumeration values that indicate the permitted format of . /// When this method returns, contains the value equivalent to the date and time contained in , if the conversion succeeded, or if the conversion failed. The conversion fails if either the or parameter is , is an empty string, or does not contain a date and time that correspond to the pattern specified in . This parameter is passed uninitialized. /// /// if was converted successfully; otherwise, . /// /// is not a valid value. /// -or- /// contains an invalid combination of values (for example, both and ). // Token: 0x0600074E RID: 1870 RVA: 0x00006960 File Offset: 0x00004B60 [Token(Token = "0x600074E")] [Address(RVA = "0x2AA1300", Offset = "0x2AA0100", VA = "0x182AA1300")] public static bool TryParseExact(string s, string format, IFormatProvider provider, DateTimeStyles style, out DateTime result) { return default(bool); } /// Converts the specified string representation of a date and time to its 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. /// A string that contains a date and time to convert. /// An array of allowable formats of . /// An object that supplies culture-specific format information about . /// A bitwise combination of enumeration values that indicates the permitted format of . A typical value to specify is . /// When this method returns, contains the value equivalent to the date and time contained in , if the conversion succeeded, or if the conversion failed. The conversion fails if or is , or an element of is an empty string, or the format of is not exactly as specified by at least one of the format patterns in . This parameter is passed uninitialized. /// /// if the parameter was converted successfully; otherwise, . /// /// is not a valid value. /// -or- /// contains an invalid combination of values (for example, both and ). // Token: 0x0600074F RID: 1871 RVA: 0x00006978 File Offset: 0x00004B78 [Token(Token = "0x600074F")] [Address(RVA = "0x2AA1160", Offset = "0x2A9FF60", VA = "0x182AA1160")] public static bool TryParseExact(string s, string[] formats, IFormatProvider provider, DateTimeStyles style, out DateTime result) { return default(bool); } /// Adds a specified time interval to a specified date and time, yielding a new date and time. /// The date and time value to add. /// The time interval to add. /// An object that is the sum of the values of and . /// The resulting is less than or greater than . // Token: 0x06000750 RID: 1872 RVA: 0x00006990 File Offset: 0x00004B90 [Token(Token = "0x6000750")] [Address(RVA = "0x2AA2E00", Offset = "0x2AA1C00", VA = "0x182AA2E00")] public static DateTime operator +(DateTime d, TimeSpan t) { return default(DateTime); } /// Subtracts a specified time interval from a specified date and time and returns a new date and time. /// The date and time value to subtract from. /// The time interval to subtract. /// An object whose value is the value of minus the value of . /// The resulting is less than or greater than . // Token: 0x06000751 RID: 1873 RVA: 0x000069A8 File Offset: 0x00004BA8 [Token(Token = "0x6000751")] [Address(RVA = "0x2AA2F80", Offset = "0x2AA1D80", VA = "0x182AA2F80")] public static DateTime operator -(DateTime d, TimeSpan t) { return default(DateTime); } /// Subtracts a specified date and time from another specified date and time and returns a time interval. /// The date and time value to subtract from (the minuend). /// The date and time value to subtract (the subtrahend). /// The time interval between and ; that is, minus . // Token: 0x06000752 RID: 1874 RVA: 0x000069C0 File Offset: 0x00004BC0 [Token(Token = "0x6000752")] [Address(RVA = "0x2AA3040", Offset = "0x2AA1E40", VA = "0x182AA3040")] public static TimeSpan operator -(DateTime d1, DateTime d2) { return default(TimeSpan); } /// Determines whether two specified instances of are equal. /// The first object to compare. /// The second object to compare. /// /// if and represent the same date and time; otherwise, . // Token: 0x06000753 RID: 1875 RVA: 0x000069D8 File Offset: 0x00004BD8 [Token(Token = "0x6000753")] [Address(RVA = "0x2AA2EC0", Offset = "0x2AA1CC0", VA = "0x182AA2EC0")] public static bool operator ==(DateTime d1, DateTime d2) { return default(bool); } /// Determines whether two specified instances of are not equal. /// The first object to compare. /// The second object to compare. /// /// if and do not represent the same date and time; otherwise, . // Token: 0x06000754 RID: 1876 RVA: 0x000069F0 File Offset: 0x00004BF0 [Token(Token = "0x6000754")] [Address(RVA = "0x2AA2F20", Offset = "0x2AA1D20", VA = "0x182AA2F20")] public static bool operator !=(DateTime d1, DateTime d2) { return default(bool); } /// Determines whether one specified is earlier than another specified . /// The first object to compare. /// The second object to compare. /// /// if is earlier than ; otherwise, . // Token: 0x06000755 RID: 1877 RVA: 0x00006A08 File Offset: 0x00004C08 [Token(Token = "0x6000755")] [Address(RVA = "0x2AA2F60", Offset = "0x2AA1D60", VA = "0x182AA2F60")] public static bool operator <(DateTime t1, DateTime t2) { return default(bool); } /// Determines whether one specified represents a date and time that is the same as or earlier than another specified . /// The first object to compare. /// The second object to compare. /// /// if is the same as or earlier than ; otherwise, . // Token: 0x06000756 RID: 1878 RVA: 0x00006A20 File Offset: 0x00004C20 [Token(Token = "0x6000756")] [Address(RVA = "0x2AA2F40", Offset = "0x2AA1D40", VA = "0x182AA2F40")] public static bool operator <=(DateTime t1, DateTime t2) { return default(bool); } /// Determines whether one specified is later than another specified . /// The first object to compare. /// The second object to compare. /// /// if is later than ; otherwise, . // Token: 0x06000757 RID: 1879 RVA: 0x00006A38 File Offset: 0x00004C38 [Token(Token = "0x6000757")] [Address(RVA = "0x2AA2F00", Offset = "0x2AA1D00", VA = "0x182AA2F00")] public static bool operator >(DateTime t1, DateTime t2) { return default(bool); } /// Determines whether one specified represents a date and time that is the same as or later than another specified . /// The first object to compare. /// The second object to compare. /// /// if is the same as or later than ; otherwise, . // Token: 0x06000758 RID: 1880 RVA: 0x00006A50 File Offset: 0x00004C50 [Token(Token = "0x6000758")] [Address(RVA = "0x2AA2EE0", Offset = "0x2AA1CE0", VA = "0x182AA2EE0")] public static bool operator >=(DateTime t1, DateTime t2) { return default(bool); } /// Returns the for value type . /// The enumerated constant, . // Token: 0x06000759 RID: 1881 RVA: 0x00006A68 File Offset: 0x00004C68 [Token(Token = "0x6000759")] [Address(RVA = "0x4B6B10", Offset = "0x4B5910", VA = "0x1804B6B10", Slot = "6")] public TypeCode GetTypeCode() { return TypeCode.Empty; } /// This conversion is not supported. Attempting to use this method throws an . /// An object that implements the interface. (This parameter is not used; specify .) /// The return value for this member is not used. /// In all cases. // Token: 0x0600075A RID: 1882 RVA: 0x00006A80 File Offset: 0x00004C80 [Token(Token = "0x600075A")] [Address(RVA = "0x2A9FB40", Offset = "0x2A9E940", VA = "0x182A9FB40", Slot = "7")] bool IConvertible.ToBoolean(IFormatProvider provider) { return default(bool); } /// This conversion is not supported. Attempting to use this method throws an . /// An object that implements the interface. (This parameter is not used; specify .) /// The return value for this member is not used. /// In all cases. // Token: 0x0600075B RID: 1883 RVA: 0x00006A98 File Offset: 0x00004C98 [Token(Token = "0x600075B")] [Address(RVA = "0x2A9FCE0", Offset = "0x2A9EAE0", VA = "0x182A9FCE0", Slot = "8")] char IConvertible.ToChar(IFormatProvider provider) { return '\0'; } /// This conversion is not supported. Attempting to use this method throws an . /// An object that implements the interface. (This parameter is not used; specify .) /// The return value for this member is not used. /// In all cases. // Token: 0x0600075C RID: 1884 RVA: 0x00006AB0 File Offset: 0x00004CB0 [Token(Token = "0x600075C")] [Address(RVA = "0x2AA01C0", Offset = "0x2A9EFC0", VA = "0x182AA01C0", Slot = "9")] sbyte IConvertible.ToSByte(IFormatProvider provider) { return 0; } /// This conversion is not supported. Attempting to use this method throws an . /// An object that implements the interface. (This parameter is not used; specify .) /// The return value for this member is not used. /// In all cases. // Token: 0x0600075D RID: 1885 RVA: 0x00006AC8 File Offset: 0x00004CC8 [Token(Token = "0x600075D")] [Address(RVA = "0x2A9FC10", Offset = "0x2A9EA10", VA = "0x182A9FC10", Slot = "10")] byte IConvertible.ToByte(IFormatProvider provider) { return 0; } /// This conversion is not supported. Attempting to use this method throws an . /// An object that implements the interface. (This parameter is not used; specify .) /// The return value for this member is not used. /// In all cases. // Token: 0x0600075E RID: 1886 RVA: 0x00006AE0 File Offset: 0x00004CE0 [Token(Token = "0x600075E")] [Address(RVA = "0x2A9FF50", Offset = "0x2A9ED50", VA = "0x182A9FF50", Slot = "11")] short IConvertible.ToInt16(IFormatProvider provider) { return 0; } /// This conversion is not supported. Attempting to use this method throws an . /// An object that implements the interface. (This parameter is not used; specify .) /// The return value for this member is not used. /// In all cases. // Token: 0x0600075F RID: 1887 RVA: 0x00006AF8 File Offset: 0x00004CF8 [Token(Token = "0x600075F")] [Address(RVA = "0x2AA03F0", Offset = "0x2A9F1F0", VA = "0x182AA03F0", Slot = "12")] ushort IConvertible.ToUInt16(IFormatProvider provider) { return 0; } /// This conversion is not supported. Attempting to use this method throws an . /// An object that implements the interface. (This parameter is not used; specify .) /// The return value for this member is not used. /// In all cases. // Token: 0x06000760 RID: 1888 RVA: 0x00006B10 File Offset: 0x00004D10 [Token(Token = "0x6000760")] [Address(RVA = "0x2AA0020", Offset = "0x2A9EE20", VA = "0x182AA0020", Slot = "13")] int IConvertible.ToInt32(IFormatProvider provider) { return 0; } /// This conversion is not supported. Attempting to use this method throws an . /// An object that implements the interface. (This parameter is not used; specify .) /// The return value for this member is not used. /// In all cases. // Token: 0x06000761 RID: 1889 RVA: 0x00006B28 File Offset: 0x00004D28 [Token(Token = "0x6000761")] [Address(RVA = "0x2AA04C0", Offset = "0x2A9F2C0", VA = "0x182AA04C0", Slot = "14")] uint IConvertible.ToUInt32(IFormatProvider provider) { return 0U; } /// This conversion is not supported. Attempting to use this method throws an . /// An object that implements the interface. (This parameter is not used; specify .) /// The return value for this member is not used. /// In all cases. // Token: 0x06000762 RID: 1890 RVA: 0x00006B40 File Offset: 0x00004D40 [Token(Token = "0x6000762")] [Address(RVA = "0x2AA00F0", Offset = "0x2A9EEF0", VA = "0x182AA00F0", Slot = "15")] long IConvertible.ToInt64(IFormatProvider provider) { return 0L; } /// This conversion is not supported. Attempting to use this method throws an . /// An object that implements the interface. (This parameter is not used; specify .) /// The return value for this member is not used. /// In all cases. // Token: 0x06000763 RID: 1891 RVA: 0x00006B58 File Offset: 0x00004D58 [Token(Token = "0x6000763")] [Address(RVA = "0x2AA0590", Offset = "0x2A9F390", VA = "0x182AA0590", Slot = "16")] ulong IConvertible.ToUInt64(IFormatProvider provider) { return 0UL; } /// This conversion is not supported. Attempting to use this method throws an . /// An object that implements the interface. (This parameter is not used; specify .) /// The return value for this member is not used. /// In all cases. // Token: 0x06000764 RID: 1892 RVA: 0x00006B70 File Offset: 0x00004D70 [Token(Token = "0x6000764")] [Address(RVA = "0x2AA0290", Offset = "0x2A9F090", VA = "0x182AA0290", Slot = "17")] float IConvertible.ToSingle(IFormatProvider provider) { return 0f; } /// This conversion is not supported. Attempting to use this method throws an . /// An object that implements the interface. (This parameter is not used; specify .) /// The return value for this member is not used. /// In all cases. // Token: 0x06000765 RID: 1893 RVA: 0x00006B88 File Offset: 0x00004D88 [Token(Token = "0x6000765")] [Address(RVA = "0x2A9FE80", Offset = "0x2A9EC80", VA = "0x182A9FE80", Slot = "18")] double IConvertible.ToDouble(IFormatProvider provider) { return 0.0; } /// This conversion is not supported. Attempting to use this method throws an . /// An object that implements the interface. (This parameter is not used; specify .) /// The return value for this member is not used. /// In all cases. // Token: 0x06000766 RID: 1894 RVA: 0x00006BA0 File Offset: 0x00004DA0 [Token(Token = "0x6000766")] [Address(RVA = "0x2A9FDB0", Offset = "0x2A9EBB0", VA = "0x182A9FDB0", Slot = "19")] decimal IConvertible.ToDecimal(IFormatProvider provider) { return 0m; } /// Returns the current object. /// An object that implements the interface. (This parameter is not used; specify .) /// The current object. // Token: 0x06000767 RID: 1895 RVA: 0x00006BB8 File Offset: 0x00004DB8 [Token(Token = "0x6000767")] [Address(RVA = "0x41D090", Offset = "0x41BE90", VA = "0x18041D090", Slot = "20")] DateTime IConvertible.ToDateTime(IFormatProvider provider) { return default(DateTime); } /// Converts the current object to an object of a specified type. /// The desired type. /// An object that implements the interface. (This parameter is not used; specify .) /// An object of the type specified by the parameter, with a value equivalent to the current object. /// /// is . /// This conversion is not supported for the type. // Token: 0x06000768 RID: 1896 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x6000768")] [Address(RVA = "0x2AA0360", Offset = "0x2A9F160", VA = "0x182AA0360", Slot = "22")] object IConvertible.ToType(Type type, IFormatProvider provider) { return null; } // Token: 0x06000769 RID: 1897 RVA: 0x00006BD0 File Offset: 0x00004DD0 [Token(Token = "0x6000769")] [Address(RVA = "0x2AA0F10", Offset = "0x2A9FD10", VA = "0x182AA0F10")] 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: 0x040002E1 RID: 737 [Token(Token = "0x40002E1")] private const long TicksPerMillisecond = 10000L; // Token: 0x040002E2 RID: 738 [Token(Token = "0x40002E2")] private const long TicksPerSecond = 10000000L; // Token: 0x040002E3 RID: 739 [Token(Token = "0x40002E3")] private const long TicksPerMinute = 600000000L; // Token: 0x040002E4 RID: 740 [Token(Token = "0x40002E4")] private const long TicksPerHour = 36000000000L; // Token: 0x040002E5 RID: 741 [Token(Token = "0x40002E5")] private const long TicksPerDay = 864000000000L; // Token: 0x040002E6 RID: 742 [Token(Token = "0x40002E6")] private const int MillisPerSecond = 1000; // Token: 0x040002E7 RID: 743 [Token(Token = "0x40002E7")] private const int MillisPerMinute = 60000; // Token: 0x040002E8 RID: 744 [Token(Token = "0x40002E8")] private const int MillisPerHour = 3600000; // Token: 0x040002E9 RID: 745 [Token(Token = "0x40002E9")] private const int MillisPerDay = 86400000; // Token: 0x040002EA RID: 746 [Token(Token = "0x40002EA")] private const int DaysPerYear = 365; // Token: 0x040002EB RID: 747 [Token(Token = "0x40002EB")] private const int DaysPer4Years = 1461; // Token: 0x040002EC RID: 748 [Token(Token = "0x40002EC")] private const int DaysPer100Years = 36524; // Token: 0x040002ED RID: 749 [Token(Token = "0x40002ED")] private const int DaysPer400Years = 146097; // Token: 0x040002EE RID: 750 [Token(Token = "0x40002EE")] private const int DaysTo1601 = 584388; // Token: 0x040002EF RID: 751 [Token(Token = "0x40002EF")] private const int DaysTo1899 = 693593; // Token: 0x040002F0 RID: 752 [Token(Token = "0x40002F0")] internal const int DaysTo1970 = 719162; // Token: 0x040002F1 RID: 753 [Token(Token = "0x40002F1")] private const int DaysTo10000 = 3652059; // Token: 0x040002F2 RID: 754 [Token(Token = "0x40002F2")] internal const long MinTicks = 0L; // Token: 0x040002F3 RID: 755 [Token(Token = "0x40002F3")] internal const long MaxTicks = 3155378975999999999L; // Token: 0x040002F4 RID: 756 [Token(Token = "0x40002F4")] private const long MaxMillis = 315537897600000L; // Token: 0x040002F5 RID: 757 [Token(Token = "0x40002F5")] private const long FileTimeOffset = 504911232000000000L; // Token: 0x040002F6 RID: 758 [Token(Token = "0x40002F6")] private const long DoubleDateOffset = 599264352000000000L; // Token: 0x040002F7 RID: 759 [Token(Token = "0x40002F7")] private const long OADateMinAsTicks = 31241376000000000L; // Token: 0x040002F8 RID: 760 [Token(Token = "0x40002F8")] private const double OADateMinAsDouble = -657435.0; // Token: 0x040002F9 RID: 761 [Token(Token = "0x40002F9")] private const double OADateMaxAsDouble = 2958466.0; // Token: 0x040002FA RID: 762 [Token(Token = "0x40002FA")] private const int DatePartYear = 0; // Token: 0x040002FB RID: 763 [Token(Token = "0x40002FB")] private const int DatePartDayOfYear = 1; // Token: 0x040002FC RID: 764 [Token(Token = "0x40002FC")] private const int DatePartMonth = 2; // Token: 0x040002FD RID: 765 [Token(Token = "0x40002FD")] private const int DatePartDay = 3; // Token: 0x040002FE RID: 766 [Token(Token = "0x40002FE")] private static readonly int[] DaysToMonth365; // Token: 0x040002FF RID: 767 [Token(Token = "0x40002FF")] private static readonly int[] DaysToMonth366; /// Represents the smallest possible value of . This field is read-only. // Token: 0x04000300 RID: 768 [Token(Token = "0x4000300")] public static readonly DateTime MinValue; /// Represents the largest possible value of . This field is read-only. // Token: 0x04000301 RID: 769 [Token(Token = "0x4000301")] public static readonly DateTime MaxValue; // Token: 0x04000302 RID: 770 [Token(Token = "0x4000302")] private const ulong TicksMask = 4611686018427387903UL; // Token: 0x04000303 RID: 771 [Token(Token = "0x4000303")] private const ulong FlagsMask = 13835058055282163712UL; // Token: 0x04000304 RID: 772 [Token(Token = "0x4000304")] private const ulong LocalMask = 9223372036854775808UL; // Token: 0x04000305 RID: 773 [Token(Token = "0x4000305")] private const long TicksCeiling = 4611686018427387904L; // Token: 0x04000306 RID: 774 [Token(Token = "0x4000306")] private const ulong KindUnspecified = 0UL; // Token: 0x04000307 RID: 775 [Token(Token = "0x4000307")] private const ulong KindUtc = 4611686018427387904UL; // Token: 0x04000308 RID: 776 [Token(Token = "0x4000308")] private const ulong KindLocal = 9223372036854775808UL; // Token: 0x04000309 RID: 777 [Token(Token = "0x4000309")] private const ulong KindLocalAmbiguousDst = 13835058055282163712UL; // Token: 0x0400030A RID: 778 [Token(Token = "0x400030A")] private const int KindShift = 62; // Token: 0x0400030B RID: 779 [Token(Token = "0x400030B")] private const string TicksField = "ticks"; // Token: 0x0400030C RID: 780 [Token(Token = "0x400030C")] private const string DateDataField = "dateData"; // Token: 0x0400030D RID: 781 [global::Cpp2IlInjected.FieldOffset(Offset = "0x0")] [Token(Token = "0x400030D")] private ulong dateData; } }