using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System
{
/// Represents a time interval.
// Token: 0x0200014B RID: 331
[Token(Token = "0x200014B")]
[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: 0x06000CCD RID: 3277 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000CCD")]
[Address(RVA = "0x593200", Offset = "0x592200", VA = "0x180593200")]
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: 0x06000CCE RID: 3278 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000CCE")]
[Address(RVA = "0xF71210", Offset = "0xF70210", VA = "0x180F71210")]
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: 0x06000CCF RID: 3279 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000CCF")]
[Address(RVA = "0xF710F0", Offset = "0xF700F0", VA = "0x180F710F0")]
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: 0x06000CD0 RID: 3280 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000CD0")]
[Address(RVA = "0xF71120", Offset = "0xF70120", VA = "0x180F71120")]
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: 0x17000101 RID: 257
// (get) Token: 0x06000CD1 RID: 3281 RVA: 0x0000AF38 File Offset: 0x00009138
[Token(Token = "0x17000101")]
public long Ticks
{
[Token(Token = "0x6000CD1")]
[Address(RVA = "0x63E630", Offset = "0x63D630", VA = "0x18063E630")]
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: 0x17000102 RID: 258
// (get) Token: 0x06000CD2 RID: 3282 RVA: 0x0000AF50 File Offset: 0x00009150
[Token(Token = "0x17000102")]
public int Days
{
[Token(Token = "0x6000CD2")]
[Address(RVA = "0xF71310", Offset = "0xF70310", VA = "0x180F71310")]
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: 0x17000103 RID: 259
// (get) Token: 0x06000CD3 RID: 3283 RVA: 0x0000AF68 File Offset: 0x00009168
[Token(Token = "0x17000103")]
public int Hours
{
[Token(Token = "0x6000CD3")]
[Address(RVA = "0xF71330", Offset = "0xF70330", VA = "0x180F71330")]
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: 0x17000104 RID: 260
// (get) Token: 0x06000CD4 RID: 3284 RVA: 0x0000AF80 File Offset: 0x00009180
[Token(Token = "0x17000104")]
public int Milliseconds
{
[Token(Token = "0x6000CD4")]
[Address(RVA = "0xF71490", Offset = "0xF70490", VA = "0x180F71490")]
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: 0x17000105 RID: 261
// (get) Token: 0x06000CD5 RID: 3285 RVA: 0x0000AF98 File Offset: 0x00009198
[Token(Token = "0x17000105")]
public int Minutes
{
[Token(Token = "0x6000CD5")]
[Address(RVA = "0xF714E0", Offset = "0xF704E0", VA = "0x180F714E0")]
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: 0x17000106 RID: 262
// (get) Token: 0x06000CD6 RID: 3286 RVA: 0x0000AFB0 File Offset: 0x000091B0
[Token(Token = "0x17000106")]
public int Seconds
{
[Token(Token = "0x6000CD6")]
[Address(RVA = "0xF71530", Offset = "0xF70530", VA = "0x180F71530")]
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: 0x17000107 RID: 263
// (get) Token: 0x06000CD7 RID: 3287 RVA: 0x0000AFC8 File Offset: 0x000091C8
[Token(Token = "0x17000107")]
public double TotalDays
{
[Token(Token = "0x6000CD7")]
[Address(RVA = "0xF71580", Offset = "0xF70580", VA = "0x180F71580")]
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: 0x17000108 RID: 264
// (get) Token: 0x06000CD8 RID: 3288 RVA: 0x0000AFE0 File Offset: 0x000091E0
[Token(Token = "0x17000108")]
public double TotalHours
{
[Token(Token = "0x6000CD8")]
[Address(RVA = "0xF715A0", Offset = "0xF705A0", VA = "0x180F715A0")]
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: 0x17000109 RID: 265
// (get) Token: 0x06000CD9 RID: 3289 RVA: 0x0000AFF8 File Offset: 0x000091F8
[Token(Token = "0x17000109")]
public double TotalMilliseconds
{
[Token(Token = "0x6000CD9")]
[Address(RVA = "0xF715C0", Offset = "0xF705C0", VA = "0x180F715C0")]
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: 0x1700010A RID: 266
// (get) Token: 0x06000CDA RID: 3290 RVA: 0x0000B010 File Offset: 0x00009210
[Token(Token = "0x1700010A")]
public double TotalMinutes
{
[Token(Token = "0x6000CDA")]
[Address(RVA = "0xF715F0", Offset = "0xF705F0", VA = "0x180F715F0")]
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: 0x1700010B RID: 267
// (get) Token: 0x06000CDB RID: 3291 RVA: 0x0000B028 File Offset: 0x00009228
[Token(Token = "0x1700010B")]
public double TotalSeconds
{
[Token(Token = "0x6000CDB")]
[Address(RVA = "0xF71610", Offset = "0xF70610", VA = "0x180F71610")]
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: 0x06000CDC RID: 3292 RVA: 0x0000B040 File Offset: 0x00009240
[Token(Token = "0x6000CDC")]
[Address(RVA = "0xF703F0", Offset = "0xF6F3F0", VA = "0x180F703F0")]
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: 0x06000CDD RID: 3293 RVA: 0x0000B058 File Offset: 0x00009258
[Token(Token = "0x6000CDD")]
[Address(RVA = "0xF70590", Offset = "0xF6F590", VA = "0x180F70590")]
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: 0x06000CDE RID: 3294 RVA: 0x0000B070 File Offset: 0x00009270
[Token(Token = "0x6000CDE")]
[Address(RVA = "0xF704B0", Offset = "0xF6F4B0", VA = "0x180F704B0", 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: 0x06000CDF RID: 3295 RVA: 0x0000B088 File Offset: 0x00009288
[Token(Token = "0x6000CDF")]
[Address(RVA = "0xF70490", Offset = "0xF6F490", VA = "0x180F70490", 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: 0x06000CE0 RID: 3296 RVA: 0x0000B0A0 File Offset: 0x000092A0
[Token(Token = "0x6000CE0")]
[Address(RVA = "0xF70700", Offset = "0xF6F700", VA = "0x180F70700")]
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: 0x06000CE1 RID: 3297 RVA: 0x0000B0B8 File Offset: 0x000092B8
[Token(Token = "0x6000CE1")]
[Address(RVA = "0xF705B0", Offset = "0xF6F5B0", VA = "0x180F705B0")]
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: 0x06000CE2 RID: 3298 RVA: 0x0000B0D0 File Offset: 0x000092D0
[Token(Token = "0x6000CE2")]
[Address(RVA = "0xF70670", Offset = "0xF6F670", VA = "0x180F70670", 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: 0x06000CE3 RID: 3299 RVA: 0x0000B0E8 File Offset: 0x000092E8
[Token(Token = "0x6000CE3")]
[Address(RVA = "0x593190", Offset = "0x592190", VA = "0x180593190", 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: 0x06000CE4 RID: 3300 RVA: 0x0000B100 File Offset: 0x00009300
[Token(Token = "0x6000CE4")]
[Address(RVA = "0xCBFF00", Offset = "0xCBEF00", VA = "0x180CBFF00", 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: 0x06000CE5 RID: 3301 RVA: 0x0000B118 File Offset: 0x00009318
[Token(Token = "0x6000CE5")]
[Address(RVA = "0xF70760", Offset = "0xF6F760", VA = "0x180F70760")]
public static TimeSpan FromHours(double value)
{
return default(TimeSpan);
}
// Token: 0x06000CE6 RID: 3302 RVA: 0x0000B130 File Offset: 0x00009330
[Token(Token = "0x6000CE6")]
[Address(RVA = "0xF70920", Offset = "0xF6F920", VA = "0x180F70920")]
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: 0x06000CE7 RID: 3303 RVA: 0x0000B148 File Offset: 0x00009348
[Token(Token = "0x6000CE7")]
[Address(RVA = "0xF707C0", Offset = "0xF6F7C0", VA = "0x180F707C0")]
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: 0x06000CE8 RID: 3304 RVA: 0x0000B160 File Offset: 0x00009360
[Token(Token = "0x6000CE8")]
[Address(RVA = "0xF70820", Offset = "0xF6F820", VA = "0x180F70820")]
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: 0x06000CE9 RID: 3305 RVA: 0x0000B178 File Offset: 0x00009378
[Token(Token = "0x6000CE9")]
[Address(RVA = "0xF70A60", Offset = "0xF6FA60", VA = "0x180F70A60")]
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: 0x06000CEA RID: 3306 RVA: 0x0000B190 File Offset: 0x00009390
[Token(Token = "0x6000CEA")]
[Address(RVA = "0xF70880", Offset = "0xF6F880", VA = "0x180F70880")]
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: 0x06000CEB RID: 3307 RVA: 0x0000B1A8 File Offset: 0x000093A8
[Token(Token = "0x6000CEB")]
[Address(RVA = "0xF70BE0", Offset = "0xF6FBE0", VA = "0x180F70BE0")]
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: 0x06000CEC RID: 3308 RVA: 0x0000B1C0 File Offset: 0x000093C0
[Token(Token = "0x6000CEC")]
[Address(RVA = "0x4A65C0", Offset = "0x4A55C0", VA = "0x1804A65C0")]
public static TimeSpan FromTicks(long value)
{
return default(TimeSpan);
}
// Token: 0x06000CED RID: 3309 RVA: 0x0000B1D8 File Offset: 0x000093D8
[Token(Token = "0x6000CED")]
[Address(RVA = "0xF70C80", Offset = "0xF6FC80", VA = "0x180F70C80")]
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: 0x06000CEE RID: 3310 RVA: 0x0000B1F0 File Offset: 0x000093F0
[Token(Token = "0x6000CEE")]
[Address(RVA = "0xF70B80", Offset = "0xF6FB80", VA = "0x180F70B80")]
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: 0x06000CEF RID: 3311 RVA: 0x0000B208 File Offset: 0x00009408
[Token(Token = "0x6000CEF")]
[Address(RVA = "0xF70B10", Offset = "0xF6FB10", VA = "0x180F70B10")]
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: 0x06000CF0 RID: 3312 RVA: 0x0000B220 File Offset: 0x00009420
[Token(Token = "0x6000CF0")]
[Address(RVA = "0xF70FF0", Offset = "0xF6FFF0", VA = "0x180F70FF0")]
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: 0x06000CF1 RID: 3313 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6000CF1")]
[Address(RVA = "0xF70D40", Offset = "0xF6FD40", VA = "0x180F70D40", 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: 0x06000CF2 RID: 3314 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6000CF2")]
[Address(RVA = "0xF70DA0", Offset = "0xF6FDA0", VA = "0x180F70DA0")]
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: 0x06000CF3 RID: 3315 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6000CF3")]
[Address(RVA = "0xF70E10", Offset = "0xF6FE10", VA = "0x180F70E10", 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: 0x06000CF4 RID: 3316 RVA: 0x0000B238 File Offset: 0x00009438
[Token(Token = "0x6000CF4")]
[Address(RVA = "0xF71690", Offset = "0xF70690", VA = "0x180F71690")]
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: 0x06000CF5 RID: 3317 RVA: 0x0000B250 File Offset: 0x00009450
[Token(Token = "0x6000CF5")]
[Address(RVA = "0xF71630", Offset = "0xF70630", VA = "0x180F71630")]
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: 0x06000CF6 RID: 3318 RVA: 0x0000B268 File Offset: 0x00009468
[Token(Token = "0x6000CF6")]
[Address(RVA = "0x52DD60", Offset = "0x52CD60", VA = "0x18052DD60")]
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: 0x06000CF7 RID: 3319 RVA: 0x0000B280 File Offset: 0x00009480
[Token(Token = "0x6000CF7")]
[Address(RVA = "0x594EE0", Offset = "0x593EE0", VA = "0x180594EE0")]
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: 0x06000CF8 RID: 3320 RVA: 0x0000B298 File Offset: 0x00009498
[Token(Token = "0x6000CF8")]
[Address(RVA = "0xF71680", Offset = "0xF70680", VA = "0x180F71680")]
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: 0x06000CF9 RID: 3321 RVA: 0x0000B2B0 File Offset: 0x000094B0
[Token(Token = "0x6000CF9")]
[Address(RVA = "0xF71670", Offset = "0xF70670", VA = "0x180F71670")]
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: 0x06000CFA RID: 3322 RVA: 0x0000B2C8 File Offset: 0x000094C8
[Token(Token = "0x6000CFA")]
[Address(RVA = "0xF71660", Offset = "0xF70660", VA = "0x180F71660")]
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: 0x06000CFB RID: 3323 RVA: 0x0000B2E0 File Offset: 0x000094E0
[Token(Token = "0x6000CFB")]
[Address(RVA = "0xF71650", Offset = "0xF70650", VA = "0x180F71650")]
public static bool operator >=(TimeSpan t1, TimeSpan t2)
{
return default(bool);
}
// Token: 0x06000CFC RID: 3324 RVA: 0x0000B2F8 File Offset: 0x000094F8
[Token(Token = "0x6000CFC")]
[Address(RVA = "0xF708E0", Offset = "0xF6F8E0", VA = "0x180F708E0")]
private static bool GetLegacyFormatMode()
{
return default(bool);
}
// Token: 0x1700010C RID: 268
// (get) Token: 0x06000CFD RID: 3325 RVA: 0x0000B310 File Offset: 0x00009510
[Token(Token = "0x1700010C")]
private static bool LegacyMode
{
[Token(Token = "0x6000CFD")]
[Address(RVA = "0xF71370", Offset = "0xF70370", VA = "0x180F71370")]
get
{
return default(bool);
}
}
/// Represents the number of ticks in 1 millisecond. This field is constant.
// Token: 0x0400051D RID: 1309
[Token(Token = "0x400051D")]
public const long TicksPerMillisecond = 10000L;
// Token: 0x0400051E RID: 1310
[Token(Token = "0x400051E")]
private const double MillisecondsPerTick = 0.0001;
/// Represents the number of ticks in 1 second.
// Token: 0x0400051F RID: 1311
[Token(Token = "0x400051F")]
public const long TicksPerSecond = 10000000L;
// Token: 0x04000520 RID: 1312
[Token(Token = "0x4000520")]
private const double SecondsPerTick = 1E-07;
/// Represents the number of ticks in 1 minute. This field is constant.
// Token: 0x04000521 RID: 1313
[Token(Token = "0x4000521")]
public const long TicksPerMinute = 600000000L;
// Token: 0x04000522 RID: 1314
[Token(Token = "0x4000522")]
private const double MinutesPerTick = 1.6666666666666667E-09;
/// Represents the number of ticks in 1 hour. This field is constant.
// Token: 0x04000523 RID: 1315
[Token(Token = "0x4000523")]
public const long TicksPerHour = 36000000000L;
// Token: 0x04000524 RID: 1316
[Token(Token = "0x4000524")]
private const double HoursPerTick = 2.7777777777777777E-11;
/// Represents the number of ticks in 1 day. This field is constant.
// Token: 0x04000525 RID: 1317
[Token(Token = "0x4000525")]
public const long TicksPerDay = 864000000000L;
// Token: 0x04000526 RID: 1318
[Token(Token = "0x4000526")]
private const double DaysPerTick = 1.1574074074074074E-12;
// Token: 0x04000527 RID: 1319
[Token(Token = "0x4000527")]
private const int MillisPerSecond = 1000;
// Token: 0x04000528 RID: 1320
[Token(Token = "0x4000528")]
private const int MillisPerMinute = 60000;
// Token: 0x04000529 RID: 1321
[Token(Token = "0x4000529")]
private const int MillisPerHour = 3600000;
// Token: 0x0400052A RID: 1322
[Token(Token = "0x400052A")]
private const int MillisPerDay = 86400000;
// Token: 0x0400052B RID: 1323
[Token(Token = "0x400052B")]
internal const long MaxSeconds = 922337203685L;
// Token: 0x0400052C RID: 1324
[Token(Token = "0x400052C")]
internal const long MinSeconds = -922337203685L;
// Token: 0x0400052D RID: 1325
[Token(Token = "0x400052D")]
internal const long MaxMilliSeconds = 922337203685477L;
// Token: 0x0400052E RID: 1326
[Token(Token = "0x400052E")]
internal const long MinMilliSeconds = -922337203685477L;
// Token: 0x0400052F RID: 1327
[Token(Token = "0x400052F")]
internal const long TicksPerTenthSecond = 1000000L;
/// Represents the zero value. This field is read-only.
// Token: 0x04000530 RID: 1328
[Token(Token = "0x4000530")]
public static readonly TimeSpan Zero;
/// Represents the maximum value. This field is read-only.
// Token: 0x04000531 RID: 1329
[Token(Token = "0x4000531")]
public static readonly TimeSpan MaxValue;
/// Represents the minimum value. This field is read-only.
// Token: 0x04000532 RID: 1330
[Token(Token = "0x4000532")]
public static readonly TimeSpan MinValue;
// Token: 0x04000533 RID: 1331
[global::Cpp2IlInjected.FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000533")]
internal long _ticks;
// Token: 0x04000534 RID: 1332
[Token(Token = "0x4000534")]
private static bool _legacyConfigChecked;
// Token: 0x04000535 RID: 1333
[Token(Token = "0x4000535")]
private static bool _legacyMode;
}
}