using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System
{
/// Represents a time interval.
// Token: 0x02000144 RID: 324
[Token(Token = "0x2000144")]
[ComVisible(true)]
[Serializable]
public struct TimeSpan : IComparable, IComparable, IEquatable, IFormattable
{
/// Initializes a new instance of the structure to the specified number of ticks.
/// A time period expressed in 100-nanosecond units.
// Token: 0x06000C99 RID: 3225 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000C99")]
[Address(RVA = "0x461A30", Offset = "0x460830", VA = "0x180461A30")]
public TimeSpan(long ticks)
{
}
/// Initializes a new instance of the structure to a specified number of hours, minutes, and seconds.
/// Number of hours.
/// Number of minutes.
/// Number of seconds.
/// The parameters specify a value less than or greater than .
// Token: 0x06000C9A RID: 3226 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000C9A")]
[Address(RVA = "0x1DAC270", Offset = "0x1DAB070", VA = "0x181DAC270")]
public TimeSpan(int hours, int minutes, int seconds)
{
}
/// Initializes a new instance of the structure to a specified number of days, hours, minutes, and seconds.
/// Number of days.
/// Number of hours.
/// Number of minutes.
/// Number of seconds.
/// The parameters specify a value less than or greater than .
// Token: 0x06000C9B RID: 3227 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000C9B")]
[Address(RVA = "0x1DAC150", Offset = "0x1DAAF50", VA = "0x181DAC150")]
public TimeSpan(int days, int hours, int minutes, int seconds)
{
}
/// Initializes a new instance of the structure to a specified number of days, hours, minutes, seconds, and milliseconds.
/// Number of days.
/// Number of hours.
/// Number of minutes.
/// Number of seconds.
/// Number of milliseconds.
/// The parameters specify a value less than or greater than .
// Token: 0x06000C9C RID: 3228 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000C9C")]
[Address(RVA = "0x1DAC180", Offset = "0x1DAAF80", VA = "0x181DAC180")]
public TimeSpan(int days, int hours, int minutes, int seconds, int milliseconds)
{
}
/// Gets the number of ticks that represent the value of the current structure.
/// The number of ticks contained in this instance.
// Token: 0x170000FC RID: 252
// (get) Token: 0x06000C9D RID: 3229 RVA: 0x0000AC50 File Offset: 0x00008E50
[Token(Token = "0x170000FC")]
public long Ticks
{
[Token(Token = "0x6000C9D")]
[Address(RVA = "0x41D090", Offset = "0x41BE90", VA = "0x18041D090")]
get
{
return 0L;
}
}
/// Gets the days component of the time interval represented by the current structure.
/// The day component of this instance. The return value can be positive or negative.
// Token: 0x170000FD RID: 253
// (get) Token: 0x06000C9E RID: 3230 RVA: 0x0000AC68 File Offset: 0x00008E68
[Token(Token = "0x170000FD")]
public int Days
{
[Token(Token = "0x6000C9E")]
[Address(RVA = "0x1DAC370", Offset = "0x1DAB170", VA = "0x181DAC370")]
get
{
return 0;
}
}
/// Gets the hours component of the time interval represented by the current structure.
/// The hour component of the current structure. The return value ranges from -23 through 23.
// Token: 0x170000FE RID: 254
// (get) Token: 0x06000C9F RID: 3231 RVA: 0x0000AC80 File Offset: 0x00008E80
[Token(Token = "0x170000FE")]
public int Hours
{
[Token(Token = "0x6000C9F")]
[Address(RVA = "0x1DAC390", Offset = "0x1DAB190", VA = "0x181DAC390")]
get
{
return 0;
}
}
/// Gets the milliseconds component of the time interval represented by the current structure.
/// The millisecond component of the current structure. The return value ranges from -999 through 999.
// Token: 0x170000FF RID: 255
// (get) Token: 0x06000CA0 RID: 3232 RVA: 0x0000AC98 File Offset: 0x00008E98
[Token(Token = "0x170000FF")]
public int Milliseconds
{
[Token(Token = "0x6000CA0")]
[Address(RVA = "0x1DAC4F0", Offset = "0x1DAB2F0", VA = "0x181DAC4F0")]
get
{
return 0;
}
}
/// Gets the minutes component of the time interval represented by the current structure.
/// The minute component of the current structure. The return value ranges from -59 through 59.
// Token: 0x17000100 RID: 256
// (get) Token: 0x06000CA1 RID: 3233 RVA: 0x0000ACB0 File Offset: 0x00008EB0
[Token(Token = "0x17000100")]
public int Minutes
{
[Token(Token = "0x6000CA1")]
[Address(RVA = "0x1DAC540", Offset = "0x1DAB340", VA = "0x181DAC540")]
get
{
return 0;
}
}
/// Gets the seconds component of the time interval represented by the current structure.
/// The second component of the current structure. The return value ranges from -59 through 59.
// Token: 0x17000101 RID: 257
// (get) Token: 0x06000CA2 RID: 3234 RVA: 0x0000ACC8 File Offset: 0x00008EC8
[Token(Token = "0x17000101")]
public int Seconds
{
[Token(Token = "0x6000CA2")]
[Address(RVA = "0x1DAC590", Offset = "0x1DAB390", VA = "0x181DAC590")]
get
{
return 0;
}
}
/// Gets the value of the current structure expressed in whole and fractional days.
/// The total number of days represented by this instance.
// Token: 0x17000102 RID: 258
// (get) Token: 0x06000CA3 RID: 3235 RVA: 0x0000ACE0 File Offset: 0x00008EE0
[Token(Token = "0x17000102")]
public double TotalDays
{
[Token(Token = "0x6000CA3")]
[Address(RVA = "0x1DAC5E0", Offset = "0x1DAB3E0", VA = "0x181DAC5E0")]
get
{
return 0.0;
}
}
/// Gets the value of the current structure expressed in whole and fractional hours.
/// The total number of hours represented by this instance.
// Token: 0x17000103 RID: 259
// (get) Token: 0x06000CA4 RID: 3236 RVA: 0x0000ACF8 File Offset: 0x00008EF8
[Token(Token = "0x17000103")]
public double TotalHours
{
[Token(Token = "0x6000CA4")]
[Address(RVA = "0x1DAC600", Offset = "0x1DAB400", VA = "0x181DAC600")]
get
{
return 0.0;
}
}
/// Gets the value of the current structure expressed in whole and fractional milliseconds.
/// The total number of milliseconds represented by this instance.
// Token: 0x17000104 RID: 260
// (get) Token: 0x06000CA5 RID: 3237 RVA: 0x0000AD10 File Offset: 0x00008F10
[Token(Token = "0x17000104")]
public double TotalMilliseconds
{
[Token(Token = "0x6000CA5")]
[Address(RVA = "0x1DAC620", Offset = "0x1DAB420", VA = "0x181DAC620")]
get
{
return 0.0;
}
}
/// Gets the value of the current structure expressed in whole and fractional minutes.
/// The total number of minutes represented by this instance.
// Token: 0x17000105 RID: 261
// (get) Token: 0x06000CA6 RID: 3238 RVA: 0x0000AD28 File Offset: 0x00008F28
[Token(Token = "0x17000105")]
public double TotalMinutes
{
[Token(Token = "0x6000CA6")]
[Address(RVA = "0x1DAC650", Offset = "0x1DAB450", VA = "0x181DAC650")]
get
{
return 0.0;
}
}
/// Gets the value of the current structure expressed in whole and fractional seconds.
/// The total number of seconds represented by this instance.
// Token: 0x17000106 RID: 262
// (get) Token: 0x06000CA7 RID: 3239 RVA: 0x0000AD40 File Offset: 0x00008F40
[Token(Token = "0x17000106")]
public double TotalSeconds
{
[Token(Token = "0x6000CA7")]
[Address(RVA = "0x1DAC670", Offset = "0x1DAB470", VA = "0x181DAC670")]
get
{
return 0.0;
}
}
/// Returns a new object whose value is the sum of the specified object and this instance.
/// The time interval to add.
/// A new object that represents the value of this instance plus the value of .
/// The resulting is less than or greater than .
// Token: 0x06000CA8 RID: 3240 RVA: 0x0000AD58 File Offset: 0x00008F58
[Token(Token = "0x6000CA8")]
[Address(RVA = "0x1DAB440", Offset = "0x1DAA240", VA = "0x181DAB440")]
public TimeSpan Add(TimeSpan ts)
{
return default(TimeSpan);
}
/// Compares two values and returns an integer that indicates whether the first value is shorter than, equal to, or longer than the second value.
/// The first time interval to compare.
/// The second time interval to compare.
/// One of the following values.
/// Value
///
/// Description
///
/// -1
///
/// is shorter than .
///
/// 0
///
/// is equal to .
///
/// 1
///
/// is longer than .
// Token: 0x06000CA9 RID: 3241 RVA: 0x0000AD70 File Offset: 0x00008F70
[Token(Token = "0x6000CA9")]
[Address(RVA = "0x1DAB5E0", Offset = "0x1DAA3E0", VA = "0x181DAB5E0")]
public static int Compare(TimeSpan t1, TimeSpan t2)
{
return 0;
}
/// Compares this instance to a specified object and returns an integer that indicates whether this instance is shorter than, equal to, or longer than the specified object.
/// An object to compare, or .
/// One of the following values.
/// Value
///
/// Description
///
/// -1
///
/// This instance is shorter than .
///
/// 0
///
/// This instance is equal to .
///
/// 1
///
/// This instance is longer than .
///
/// -or-
///
/// is .
///
/// is not a .
// Token: 0x06000CAA RID: 3242 RVA: 0x0000AD88 File Offset: 0x00008F88
[Token(Token = "0x6000CAA")]
[Address(RVA = "0x1DAB500", Offset = "0x1DAA300", VA = "0x181DAB500", Slot = "4")]
public int CompareTo(object value)
{
return 0;
}
/// Compares this instance to a specified object and returns an integer that indicates whether this instance is shorter than, equal to, or longer than the object.
/// An object to compare to this instance.
/// A signed number indicating the relative values of this instance and .
/// Value
///
/// Description
///
/// A negative integer
///
/// This instance is shorter than .
///
/// Zero
///
/// This instance is equal to .
///
/// A positive integer
///
/// This instance is longer than .
// Token: 0x06000CAB RID: 3243 RVA: 0x0000ADA0 File Offset: 0x00008FA0
[Token(Token = "0x6000CAB")]
[Address(RVA = "0x1DAB4E0", Offset = "0x1DAA2E0", VA = "0x181DAB4E0", Slot = "5")]
public int CompareTo(TimeSpan value)
{
return 0;
}
/// Returns a that represents a specified number of days, where the specification is accurate to the nearest millisecond.
/// A number of days, accurate to the nearest millisecond.
/// An object that represents .
///
/// is less than or greater than .
/// -or-
/// is .
/// -or-
/// is .
///
/// is equal to .
// Token: 0x06000CAC RID: 3244 RVA: 0x0000ADB8 File Offset: 0x00008FB8
[Token(Token = "0x6000CAC")]
[Address(RVA = "0x1DAB750", Offset = "0x1DAA550", VA = "0x181DAB750")]
public static TimeSpan FromDays(double value)
{
return default(TimeSpan);
}
/// Returns a new object whose value is the absolute value of the current object.
/// A new object whose value is the absolute value of the current object.
/// The value of this instance is .
// Token: 0x06000CAD RID: 3245 RVA: 0x0000ADD0 File Offset: 0x00008FD0
[Token(Token = "0x6000CAD")]
[Address(RVA = "0x1DAB600", Offset = "0x1DAA400", VA = "0x181DAB600")]
public TimeSpan Duration()
{
return default(TimeSpan);
}
/// Returns a value indicating whether this instance is equal to a specified object.
/// An object to compare with this instance.
///
/// if is a object that represents the same time interval as the current structure; otherwise, .
// Token: 0x06000CAE RID: 3246 RVA: 0x0000ADE8 File Offset: 0x00008FE8
[Token(Token = "0x6000CAE")]
[Address(RVA = "0x1DAB6C0", Offset = "0x1DAA4C0", VA = "0x181DAB6C0", Slot = "0")]
public override bool Equals(object value)
{
return default(bool);
}
/// Returns a value indicating whether this instance is equal to a specified object.
/// An object to compare with this instance.
///
/// if represents the same time interval as this instance; otherwise, .
// Token: 0x06000CAF RID: 3247 RVA: 0x0000AE00 File Offset: 0x00009000
[Token(Token = "0x6000CAF")]
[Address(RVA = "0x164AF50", Offset = "0x1649D50", VA = "0x18164AF50", Slot = "6")]
public bool Equals(TimeSpan obj)
{
return default(bool);
}
/// Returns a hash code for this instance.
/// A 32-bit signed integer hash code.
// Token: 0x06000CB0 RID: 3248 RVA: 0x0000AE18 File Offset: 0x00009018
[Token(Token = "0x6000CB0")]
[Address(RVA = "0x1DAB930", Offset = "0x1DAA730", VA = "0x181DAB930", Slot = "2")]
public override int GetHashCode()
{
return 0;
}
/// Returns a that represents a specified number of hours, where the specification is accurate to the nearest millisecond.
/// A number of hours accurate to the nearest millisecond.
/// An object that represents .
///
/// is less than or greater than .
/// -or-
/// is .
/// -or-
/// is .
///
/// is equal to .
// Token: 0x06000CB1 RID: 3249 RVA: 0x0000AE30 File Offset: 0x00009030
[Token(Token = "0x6000CB1")]
[Address(RVA = "0x1DAB7B0", Offset = "0x1DAA5B0", VA = "0x181DAB7B0")]
public static TimeSpan FromHours(double value)
{
return default(TimeSpan);
}
// Token: 0x06000CB2 RID: 3250 RVA: 0x0000AE48 File Offset: 0x00009048
[Token(Token = "0x6000CB2")]
[Address(RVA = "0x1DAB980", Offset = "0x1DAA780", VA = "0x181DAB980")]
private static TimeSpan Interval(double value, int scale)
{
return default(TimeSpan);
}
/// Returns a that represents a specified number of milliseconds.
/// A number of milliseconds.
/// An object that represents .
///
/// is less than or greater than .
/// -or-
/// is .
/// -or-
/// is .
///
/// is equal to .
// Token: 0x06000CB3 RID: 3251 RVA: 0x0000AE60 File Offset: 0x00009060
[Token(Token = "0x6000CB3")]
[Address(RVA = "0x1DAB810", Offset = "0x1DAA610", VA = "0x181DAB810")]
public static TimeSpan FromMilliseconds(double value)
{
return default(TimeSpan);
}
/// Returns a that represents a specified number of minutes, where the specification is accurate to the nearest millisecond.
/// A number of minutes, accurate to the nearest millisecond.
/// An object that represents .
///
/// is less than or greater than .
/// -or-
/// is .
/// -or-
/// is .
///
/// is equal to .
// Token: 0x06000CB4 RID: 3252 RVA: 0x0000AE78 File Offset: 0x00009078
[Token(Token = "0x6000CB4")]
[Address(RVA = "0x1DAB870", Offset = "0x1DAA670", VA = "0x181DAB870")]
public static TimeSpan FromMinutes(double value)
{
return default(TimeSpan);
}
/// Returns a new object whose value is the negated value of this instance.
/// A new object with the same numeric value as this instance, but with the opposite sign.
/// The negated value of this instance cannot be represented by a ; that is, the value of this instance is .
// Token: 0x06000CB5 RID: 3253 RVA: 0x0000AE90 File Offset: 0x00009090
[Token(Token = "0x6000CB5")]
[Address(RVA = "0x1DABAC0", Offset = "0x1DAA8C0", VA = "0x181DABAC0")]
public TimeSpan Negate()
{
return default(TimeSpan);
}
/// Returns a that represents a specified number of seconds, where the specification is accurate to the nearest millisecond.
/// A number of seconds, accurate to the nearest millisecond.
/// An object that represents .
///
/// is less than or greater than .
/// -or-
/// is .
/// -or-
/// is .
///
/// is equal to .
// Token: 0x06000CB6 RID: 3254 RVA: 0x0000AEA8 File Offset: 0x000090A8
[Token(Token = "0x6000CB6")]
[Address(RVA = "0x1DAB8D0", Offset = "0x1DAA6D0", VA = "0x181DAB8D0")]
public static TimeSpan FromSeconds(double value)
{
return default(TimeSpan);
}
/// Returns a new object whose value is the difference between the specified object and this instance.
/// The time interval to be subtracted.
/// A new time interval whose value is the result of the value of this instance minus the value of .
/// The return value is less than or greater than .
// Token: 0x06000CB7 RID: 3255 RVA: 0x0000AEC0 File Offset: 0x000090C0
[Token(Token = "0x6000CB7")]
[Address(RVA = "0x1DABC40", Offset = "0x1DAAA40", VA = "0x181DABC40")]
public TimeSpan Subtract(TimeSpan ts)
{
return default(TimeSpan);
}
/// Returns a that represents a specified time, where the specification is in units of ticks.
/// A number of ticks that represent a time.
/// An object that represents .
// Token: 0x06000CB8 RID: 3256 RVA: 0x0000AED8 File Offset: 0x000090D8
[Token(Token = "0x6000CB8")]
[Address(RVA = "0x434BD0", Offset = "0x4339D0", VA = "0x180434BD0")]
public static TimeSpan FromTicks(long value)
{
return default(TimeSpan);
}
// Token: 0x06000CB9 RID: 3257 RVA: 0x0000AEF0 File Offset: 0x000090F0
[Token(Token = "0x6000CB9")]
[Address(RVA = "0x1DABCE0", Offset = "0x1DAAAE0", VA = "0x181DABCE0")]
internal static long TimeToTicks(int hour, int minute, int second)
{
return 0L;
}
/// Converts the string representation of a time interval to its equivalent.
/// A string that specifies the time interval to convert.
/// A time interval that corresponds to .
///
/// is .
///
/// has an invalid format.
///
/// represents a number that is less than or greater than .
/// -or-
/// At least one of the days, hours, minutes, or seconds components is outside its valid range.
// Token: 0x06000CBA RID: 3258 RVA: 0x0000AF08 File Offset: 0x00009108
[Token(Token = "0x6000CBA")]
[Address(RVA = "0x1DABBE0", Offset = "0x1DAA9E0", VA = "0x181DABBE0")]
public static TimeSpan Parse(string s)
{
return default(TimeSpan);
}
/// Converts the string representation of a time interval to its equivalent by using the specified culture-specific format information.
/// A string that specifies the time interval to convert.
/// An object that supplies culture-specific formatting information.
/// A time interval that corresponds to , as specified by .
///
/// is .
///
/// has an invalid format.
///
/// represents a number that is less than or greater than .
/// -or-
/// At least one of the days, hours, minutes, or seconds components in is outside its valid range.
// Token: 0x06000CBB RID: 3259 RVA: 0x0000AF20 File Offset: 0x00009120
[Token(Token = "0x6000CBB")]
[Address(RVA = "0x1DABB70", Offset = "0x1DAA970", VA = "0x181DABB70")]
public static TimeSpan Parse(string input, IFormatProvider formatProvider)
{
return default(TimeSpan);
}
/// Converts the string representation of a time interval to its equivalent by using the specified culture-specific formatting information, and returns a value that indicates whether the conversion succeeded.
/// A string that specifies the time interval to convert.
/// An object that supplies culture-specific formatting information.
/// When this method returns, contains an object that represents the time interval specified by , or if the conversion failed. This parameter is passed uninitialized.
///
/// if was converted successfully; otherwise, . This operation returns if the parameter is or , has an invalid format, represents a time interval that is less than or greater than , or has at least one days, hours, minutes, or seconds component outside its valid range.
// Token: 0x06000CBC RID: 3260 RVA: 0x0000AF38 File Offset: 0x00009138
[Token(Token = "0x6000CBC")]
[Address(RVA = "0x1DAC050", Offset = "0x1DAAE50", VA = "0x181DAC050")]
public static bool TryParse(string input, IFormatProvider formatProvider, out TimeSpan result)
{
return default(bool);
}
/// Converts the value of the current object to its equivalent string representation.
/// The string representation of the current value.
// Token: 0x06000CBD RID: 3261 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6000CBD")]
[Address(RVA = "0x1DABDA0", Offset = "0x1DAABA0", VA = "0x181DABDA0", Slot = "3")]
public override string ToString()
{
return null;
}
/// Converts the value of the current object to its equivalent string representation by using the specified format.
/// A standard or custom format string.
/// The string representation of the current value in the format specified by the parameter.
/// The parameter is not recognized or is not supported.
// Token: 0x06000CBE RID: 3262 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6000CBE")]
[Address(RVA = "0x1DABE00", Offset = "0x1DAAC00", VA = "0x181DABE00")]
public string ToString(string format)
{
return null;
}
/// Converts the value of the current object to its equivalent string representation by using the specified format and culture-specific formatting information.
/// A standard or custom format string.
/// An object that supplies culture-specific formatting information.
/// The string representation of the current value, as specified by and .
/// The parameter is not recognized or is not supported.
// Token: 0x06000CBF RID: 3263 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6000CBF")]
[Address(RVA = "0x1DABE70", Offset = "0x1DAAC70", VA = "0x181DABE70", Slot = "7")]
public string ToString(string format, IFormatProvider formatProvider)
{
return null;
}
/// Subtracts a specified from another specified .
/// The minuend.
/// The subtrahend.
/// An object whose value is the result of the value of minus the value of .
/// The return value is less than or greater than .
// Token: 0x06000CC0 RID: 3264 RVA: 0x0000AF50 File Offset: 0x00009150
[Token(Token = "0x6000CC0")]
[Address(RVA = "0x1DAC6F0", Offset = "0x1DAB4F0", VA = "0x181DAC6F0")]
public static TimeSpan operator -(TimeSpan t1, TimeSpan t2)
{
return default(TimeSpan);
}
/// Adds two specified instances.
/// The first time interval to add.
/// The second time interval to add.
/// An object whose value is the sum of the values of and .
/// The resulting is less than or greater than .
// Token: 0x06000CC1 RID: 3265 RVA: 0x0000AF68 File Offset: 0x00009168
[Token(Token = "0x6000CC1")]
[Address(RVA = "0x1DAC690", Offset = "0x1DAB490", VA = "0x181DAC690")]
public static TimeSpan operator +(TimeSpan t1, TimeSpan t2)
{
return default(TimeSpan);
}
/// Indicates whether two instances are equal.
/// The first time interval to compare.
/// The second time interval to compare.
///
/// if the values of and are equal; otherwise, .
// Token: 0x06000CC2 RID: 3266 RVA: 0x0000AF80 File Offset: 0x00009180
[Token(Token = "0x6000CC2")]
[Address(RVA = "0x4C3A20", Offset = "0x4C2820", VA = "0x1804C3A20")]
public static bool operator ==(TimeSpan t1, TimeSpan t2)
{
return default(bool);
}
/// Indicates whether two instances are not equal.
/// The first time interval to compare.
/// The second time interval to compare.
///
/// if the values of and are not equal; otherwise, .
// Token: 0x06000CC3 RID: 3267 RVA: 0x0000AF98 File Offset: 0x00009198
[Token(Token = "0x6000CC3")]
[Address(RVA = "0x164B260", Offset = "0x164A060", VA = "0x18164B260")]
public static bool operator !=(TimeSpan t1, TimeSpan t2)
{
return default(bool);
}
/// Indicates whether a specified is less than another specified .
/// The first time interval to compare.
/// The second time interval to compare.
///
/// if the value of is less than the value of ; otherwise, .
// Token: 0x06000CC4 RID: 3268 RVA: 0x0000AFB0 File Offset: 0x000091B0
[Token(Token = "0x6000CC4")]
[Address(RVA = "0x1DAC6E0", Offset = "0x1DAB4E0", VA = "0x181DAC6E0")]
public static bool operator <(TimeSpan t1, TimeSpan t2)
{
return default(bool);
}
/// Indicates whether a specified is less than or equal to another specified .
/// The first time interval to compare.
/// The second time interval to compare.
///
/// if the value of is less than or equal to the value of ; otherwise, .
// Token: 0x06000CC5 RID: 3269 RVA: 0x0000AFC8 File Offset: 0x000091C8
[Token(Token = "0x6000CC5")]
[Address(RVA = "0x1DAC6D0", Offset = "0x1DAB4D0", VA = "0x181DAC6D0")]
public static bool operator <=(TimeSpan t1, TimeSpan t2)
{
return default(bool);
}
/// Indicates whether a specified is greater than another specified .
/// The first time interval to compare.
/// The second time interval to compare.
///
/// if the value of is greater than the value of ; otherwise, .
// Token: 0x06000CC6 RID: 3270 RVA: 0x0000AFE0 File Offset: 0x000091E0
[Token(Token = "0x6000CC6")]
[Address(RVA = "0x1DAC6C0", Offset = "0x1DAB4C0", VA = "0x181DAC6C0")]
public static bool operator >(TimeSpan t1, TimeSpan t2)
{
return default(bool);
}
/// Indicates whether a specified is greater than or equal to another specified .
/// The first time interval to compare.
/// The second time interval to compare.
///
/// if the value of is greater than or equal to the value of ; otherwise, .
// Token: 0x06000CC7 RID: 3271 RVA: 0x0000AFF8 File Offset: 0x000091F8
[Token(Token = "0x6000CC7")]
[Address(RVA = "0x1DAC6B0", Offset = "0x1DAB4B0", VA = "0x181DAC6B0")]
public static bool operator >=(TimeSpan t1, TimeSpan t2)
{
return default(bool);
}
// Token: 0x06000CC8 RID: 3272 RVA: 0x0000B010 File Offset: 0x00009210
[Token(Token = "0x6000CC8")]
[Address(RVA = "0x1DAB940", Offset = "0x1DAA740", VA = "0x181DAB940")]
private static bool GetLegacyFormatMode()
{
return default(bool);
}
// Token: 0x17000107 RID: 263
// (get) Token: 0x06000CC9 RID: 3273 RVA: 0x0000B028 File Offset: 0x00009228
[Token(Token = "0x17000107")]
private static bool LegacyMode
{
[Token(Token = "0x6000CC9")]
[Address(RVA = "0x1DAC3D0", Offset = "0x1DAB1D0", VA = "0x181DAC3D0")]
get
{
return default(bool);
}
}
/// Represents the number of ticks in 1 millisecond. This field is constant.
// Token: 0x04000513 RID: 1299
[Token(Token = "0x4000513")]
public const long TicksPerMillisecond = 10000L;
// Token: 0x04000514 RID: 1300
[Token(Token = "0x4000514")]
private const double MillisecondsPerTick = 0.0001;
/// Represents the number of ticks in 1 second.
// Token: 0x04000515 RID: 1301
[Token(Token = "0x4000515")]
public const long TicksPerSecond = 10000000L;
// Token: 0x04000516 RID: 1302
[Token(Token = "0x4000516")]
private const double SecondsPerTick = 1E-07;
/// Represents the number of ticks in 1 minute. This field is constant.
// Token: 0x04000517 RID: 1303
[Token(Token = "0x4000517")]
public const long TicksPerMinute = 600000000L;
// Token: 0x04000518 RID: 1304
[Token(Token = "0x4000518")]
private const double MinutesPerTick = 1.6666666666666667E-09;
/// Represents the number of ticks in 1 hour. This field is constant.
// Token: 0x04000519 RID: 1305
[Token(Token = "0x4000519")]
public const long TicksPerHour = 36000000000L;
// Token: 0x0400051A RID: 1306
[Token(Token = "0x400051A")]
private const double HoursPerTick = 2.7777777777777777E-11;
/// Represents the number of ticks in 1 day. This field is constant.
// Token: 0x0400051B RID: 1307
[Token(Token = "0x400051B")]
public const long TicksPerDay = 864000000000L;
// Token: 0x0400051C RID: 1308
[Token(Token = "0x400051C")]
private const double DaysPerTick = 1.1574074074074074E-12;
// Token: 0x0400051D RID: 1309
[Token(Token = "0x400051D")]
private const int MillisPerSecond = 1000;
// Token: 0x0400051E RID: 1310
[Token(Token = "0x400051E")]
private const int MillisPerMinute = 60000;
// Token: 0x0400051F RID: 1311
[Token(Token = "0x400051F")]
private const int MillisPerHour = 3600000;
// Token: 0x04000520 RID: 1312
[Token(Token = "0x4000520")]
private const int MillisPerDay = 86400000;
// Token: 0x04000521 RID: 1313
[Token(Token = "0x4000521")]
internal const long MaxSeconds = 922337203685L;
// Token: 0x04000522 RID: 1314
[Token(Token = "0x4000522")]
internal const long MinSeconds = -922337203685L;
// Token: 0x04000523 RID: 1315
[Token(Token = "0x4000523")]
internal const long MaxMilliSeconds = 922337203685477L;
// Token: 0x04000524 RID: 1316
[Token(Token = "0x4000524")]
internal const long MinMilliSeconds = -922337203685477L;
// Token: 0x04000525 RID: 1317
[Token(Token = "0x4000525")]
internal const long TicksPerTenthSecond = 1000000L;
/// Represents the zero value. This field is read-only.
// Token: 0x04000526 RID: 1318
[Token(Token = "0x4000526")]
public static readonly TimeSpan Zero;
/// Represents the maximum value. This field is read-only.
// Token: 0x04000527 RID: 1319
[Token(Token = "0x4000527")]
public static readonly TimeSpan MaxValue;
/// Represents the minimum value. This field is read-only.
// Token: 0x04000528 RID: 1320
[Token(Token = "0x4000528")]
public static readonly TimeSpan MinValue;
// Token: 0x04000529 RID: 1321
[global::Cpp2IlInjected.FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000529")]
internal long _ticks;
// Token: 0x0400052A RID: 1322
[Token(Token = "0x400052A")]
private static bool _legacyConfigChecked;
// Token: 0x0400052B RID: 1323
[Token(Token = "0x400052B")]
private static bool _legacyMode;
}
}