using System;
using System.Globalization;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System
{
/// Represents a 64-bit unsigned integer.
// Token: 0x02000154 RID: 340
[Token(Token = "0x2000154")]
[CLSCompliant(false)]
[ComVisible(true)]
[Serializable]
public struct UInt64 : IComparable, IFormattable, IConvertible, IComparable, IEquatable
{
/// Compares this instance to a specified object and returns an indication of their relative values.
/// An object to compare, or .
/// A signed number indicating the relative values of this instance and .
/// Return Value
///
/// Description
///
/// Less than zero
///
/// This instance is less than .
///
/// Zero
///
/// This instance is equal to .
///
/// Greater than zero
///
/// This instance is greater than .
///
/// -or-
///
/// is .
///
/// is not a .
// Token: 0x06000E25 RID: 3621 RVA: 0x0000C000 File Offset: 0x0000A200
[Token(Token = "0x6000E25")]
[Address(RVA = "0x3286D80", Offset = "0x3285B80", VA = "0x183286D80", Slot = "4")]
public int CompareTo(object value)
{
return 0;
}
/// Compares this instance to a specified 64-bit unsigned integer and returns an indication of their relative values.
/// An unsigned integer to compare.
/// A signed number indicating the relative values of this instance and .
/// Return Value
///
/// Description
///
/// Less than zero
///
/// This instance is less than .
///
/// Zero
///
/// This instance is equal to .
///
/// Greater than zero
///
/// This instance is greater than .
// Token: 0x06000E26 RID: 3622 RVA: 0x0000C018 File Offset: 0x0000A218
[Token(Token = "0x6000E26")]
[Address(RVA = "0x3286D60", Offset = "0x3285B60", VA = "0x183286D60", Slot = "23")]
public int CompareTo(ulong value)
{
return 0;
}
/// Returns a value indicating whether this instance is equal to a specified object.
/// An object to compare to this instance.
///
/// if is an instance of and equals the value of this instance; otherwise, .
// Token: 0x06000E27 RID: 3623 RVA: 0x0000C030 File Offset: 0x0000A230
[Token(Token = "0x6000E27")]
[Address(RVA = "0x3286E60", Offset = "0x3285C60", VA = "0x183286E60", Slot = "0")]
public override bool Equals(object obj)
{
return default(bool);
}
/// Returns a value indicating whether this instance is equal to a specified value.
/// A value to compare to this instance.
///
/// if has the same value as this instance; otherwise, .
// Token: 0x06000E28 RID: 3624 RVA: 0x0000C048 File Offset: 0x0000A248
[Token(Token = "0x6000E28")]
[Address(RVA = "0x164AF50", Offset = "0x1649D50", VA = "0x18164AF50", Slot = "24")]
public bool Equals(ulong obj)
{
return default(bool);
}
/// Returns the hash code for this instance.
/// A 32-bit signed integer hash code.
// Token: 0x06000E29 RID: 3625 RVA: 0x0000C060 File Offset: 0x0000A260
[Token(Token = "0x6000E29")]
[Address(RVA = "0x3286EF0", Offset = "0x3285CF0", VA = "0x183286EF0", Slot = "2")]
public override int GetHashCode()
{
return 0;
}
/// Converts the numeric value of this instance to its equivalent string representation.
/// The string representation of the value of this instance, consisting of a sequence of digits ranging from 0 to 9, without a sign or leading zeroes.
// Token: 0x06000E2A RID: 3626 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6000E2A")]
[Address(RVA = "0x3287650", Offset = "0x3286450", VA = "0x183287650", Slot = "3")]
public override string ToString()
{
return null;
}
/// Converts the numeric value of this instance to its equivalent string representation using the specified culture-specific format information.
/// An object that supplies culture-specific formatting information.
/// The string representation of the value of this instance, consisting of a sequence of digits ranging from 0 to 9, without a sign or leading zeros.
// Token: 0x06000E2B RID: 3627 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6000E2B")]
[Address(RVA = "0x3287620", Offset = "0x3286420", VA = "0x183287620", Slot = "21")]
public string ToString(IFormatProvider provider)
{
return null;
}
/// Converts the numeric value of this instance to its equivalent string representation using the specified format.
/// A numeric format string.
/// The string representation of the value of this instance as specified by .
/// The parameter is invalid.
// Token: 0x06000E2C RID: 3628 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6000E2C")]
[Address(RVA = "0x32875E0", Offset = "0x32863E0", VA = "0x1832875E0")]
public string ToString(string format)
{
return null;
}
/// Converts the numeric value of this instance to its equivalent string representation using the specified format and culture-specific format information.
/// A numeric format string.
/// An object that supplies culture-specific formatting information about this instance.
/// The string representation of the value of this instance as specified by and .
/// The parameter is invalid.
// Token: 0x06000E2D RID: 3629 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6000E2D")]
[Address(RVA = "0x3287680", Offset = "0x3286480", VA = "0x183287680", Slot = "5")]
public string ToString(string format, IFormatProvider provider)
{
return null;
}
/// Converts the string representation of a number to its 64-bit unsigned integer equivalent.
/// A string that represents the number to convert.
/// A 64-bit unsigned integer equivalent to the number contained in .
/// The parameter is .
/// The parameter is not in the correct format.
/// The parameter represents a number less than or greater than .
// Token: 0x06000E2E RID: 3630 RVA: 0x0000C078 File Offset: 0x0000A278
[Token(Token = "0x6000E2E")]
[Address(RVA = "0x3286FC0", Offset = "0x3285DC0", VA = "0x183286FC0")]
[CLSCompliant(false)]
public static ulong Parse(string s)
{
return 0UL;
}
/// Converts the string representation of a number in a specified style to its 64-bit unsigned integer equivalent.
/// A string that represents the number to convert. The string is interpreted by using the style specified by the parameter.
/// A bitwise combination of the enumeration values that specifies the permitted format of . A typical value to specify is .
/// A 64-bit unsigned integer equivalent to the number specified in .
/// The parameter is .
///
/// is not a value.
/// -or-
/// is not a combination of and values.
/// The parameter is not in a format compliant with .
/// The parameter represents a number less than or greater than .
/// -or-
/// includes non-zero, fractional digits.
// Token: 0x06000E2F RID: 3631 RVA: 0x0000C090 File Offset: 0x0000A290
[Token(Token = "0x6000E2F")]
[Address(RVA = "0x3286F00", Offset = "0x3285D00", VA = "0x183286F00")]
[CLSCompliant(false)]
public static ulong Parse(string s, NumberStyles style)
{
return 0UL;
}
/// Converts the string representation of a number in a specified culture-specific format to its 64-bit unsigned integer equivalent.
/// A string that represents the number to convert.
/// An object that supplies culture-specific formatting information about .
/// A 64-bit unsigned integer equivalent to the number specified in .
/// The parameter is .
/// The parameter is not in the correct style.
/// The parameter represents a number less than or greater than .
// Token: 0x06000E30 RID: 3632 RVA: 0x0000C0A8 File Offset: 0x0000A2A8
[Token(Token = "0x6000E30")]
[Address(RVA = "0x3286F40", Offset = "0x3285D40", VA = "0x183286F40")]
[CLSCompliant(false)]
public static ulong Parse(string s, IFormatProvider provider)
{
return 0UL;
}
/// Converts the string representation of a number in a specified style and culture-specific format to its 64-bit unsigned integer equivalent.
/// A string that represents the number to convert. The string is interpreted by using the style specified by the parameter.
/// A bitwise combination of enumeration values that indicates the style elements that can be present in . A typical value to specify is .
/// An object that supplies culture-specific formatting information about .
/// A 64-bit unsigned integer equivalent to the number specified in .
/// The parameter is .
///
/// is not a value.
/// -or-
/// is not a combination of and values.
/// The parameter is not in a format compliant with .
/// The parameter represents a number less than or greater than .
/// -or-
/// includes non-zero, fractional digits.
// Token: 0x06000E31 RID: 3633 RVA: 0x0000C0C0 File Offset: 0x0000A2C0
[Token(Token = "0x6000E31")]
[Address(RVA = "0x3286F70", Offset = "0x3285D70", VA = "0x183286F70")]
[CLSCompliant(false)]
public static ulong Parse(string s, NumberStyles style, IFormatProvider provider)
{
return 0UL;
}
/// Tries to convert the string representation of a number to its 64-bit unsigned integer equivalent. A return value indicates whether the conversion succeeded or failed.
/// A string that represents the number to convert.
/// When this method returns, contains the 64-bit unsigned integer value that is equivalent to the number contained in , if the conversion succeeded, or zero if the conversion failed. The conversion fails if the parameter is or , is not of the correct format, or represents a number less than or greater than . This parameter is passed uninitialized; any value originally supplied in will be overwritten.
///
/// if was converted successfully; otherwise, .
// Token: 0x06000E32 RID: 3634 RVA: 0x0000C0D8 File Offset: 0x0000A2D8
[Token(Token = "0x6000E32")]
[Address(RVA = "0x3287720", Offset = "0x3286520", VA = "0x183287720")]
[CLSCompliant(false)]
public static bool TryParse(string s, out ulong result)
{
return default(bool);
}
/// Tries to convert the string representation of a number in a specified style and culture-specific format to its 64-bit unsigned integer equivalent. A return value indicates whether the conversion succeeded or failed.
/// A string that represents the number to convert. The string is interpreted by using the style specified by the parameter.
/// A bitwise combination of enumeration values that indicates the permitted format of . A typical value to specify is .
/// An object that supplies culture-specific formatting information about .
/// When this method returns, contains the 64-bit unsigned integer value equivalent to the number contained in , if the conversion succeeded, or zero if the conversion failed. The conversion fails if the parameter is or , is not in a format compliant with , or represents a number less than or greater than . This parameter is passed uninitialized; any value originally supplied in will be overwritten.
///
/// if was converted successfully; otherwise, .
///
/// is not a value.
/// -or-
/// is not a combination of and values.
// Token: 0x06000E33 RID: 3635 RVA: 0x0000C0F0 File Offset: 0x0000A2F0
[Token(Token = "0x6000E33")]
[Address(RVA = "0x32876C0", Offset = "0x32864C0", VA = "0x1832876C0")]
[CLSCompliant(false)]
public static bool TryParse(string s, NumberStyles style, IFormatProvider provider, out ulong result)
{
return default(bool);
}
/// Returns the for value type .
/// The enumerated constant, .
// Token: 0x06000E34 RID: 3636 RVA: 0x0000C108 File Offset: 0x0000A308
[Token(Token = "0x6000E34")]
[Address(RVA = "0x4B1E00", Offset = "0x4B0C00", VA = "0x1804B1E00", Slot = "6")]
public TypeCode GetTypeCode()
{
return TypeCode.Empty;
}
/// For a description of this member, see .
/// This parameter is ignored.
///
/// if the value of the current instance is not zero; otherwise, .
// Token: 0x06000E35 RID: 3637 RVA: 0x0000C120 File Offset: 0x0000A320
[Token(Token = "0x6000E35")]
[Address(RVA = "0x3286FF0", Offset = "0x3285DF0", VA = "0x183286FF0", Slot = "7")]
bool IConvertible.ToBoolean(IFormatProvider provider)
{
return default(bool);
}
/// For a description of this member, see .
/// This parameter is ignored.
/// The value of the current instance, converted to a .
// Token: 0x06000E36 RID: 3638 RVA: 0x0000C138 File Offset: 0x0000A338
[Token(Token = "0x6000E36")]
[Address(RVA = "0x32870B0", Offset = "0x3285EB0", VA = "0x1832870B0", Slot = "8")]
char IConvertible.ToChar(IFormatProvider provider)
{
return '\0';
}
/// For a description of this member, see .
/// This parameter is ignored.
/// The value of the current instance, converted to an .
// Token: 0x06000E37 RID: 3639 RVA: 0x0000C150 File Offset: 0x0000A350
[Token(Token = "0x6000E37")]
[Address(RVA = "0x32873D0", Offset = "0x32861D0", VA = "0x1832873D0", Slot = "9")]
sbyte IConvertible.ToSByte(IFormatProvider provider)
{
return 0;
}
/// For a description of this member, see .
/// This parameter is ignored.
/// The value of the current instance, converted to a .
// Token: 0x06000E38 RID: 3640 RVA: 0x0000C168 File Offset: 0x0000A368
[Token(Token = "0x6000E38")]
[Address(RVA = "0x3287050", Offset = "0x3285E50", VA = "0x183287050", Slot = "10")]
byte IConvertible.ToByte(IFormatProvider provider)
{
return 0;
}
/// For a description of this member, see .
/// This parameter is ignored.
/// The value of the current instance, converted to an .
// Token: 0x06000E39 RID: 3641 RVA: 0x0000C180 File Offset: 0x0000A380
[Token(Token = "0x6000E39")]
[Address(RVA = "0x32872B0", Offset = "0x32860B0", VA = "0x1832872B0", Slot = "11")]
short IConvertible.ToInt16(IFormatProvider provider)
{
return 0;
}
/// For a description of this member, see .
/// This parameter is ignored.
/// The value of the current instance, converted to a .
// Token: 0x06000E3A RID: 3642 RVA: 0x0000C198 File Offset: 0x0000A398
[Token(Token = "0x6000E3A")]
[Address(RVA = "0x3287520", Offset = "0x3286320", VA = "0x183287520", Slot = "12")]
ushort IConvertible.ToUInt16(IFormatProvider provider)
{
return 0;
}
/// For a description of this member, see .
/// This parameter is ignored.
/// The value of the current instance, converted to an .
// Token: 0x06000E3B RID: 3643 RVA: 0x0000C1B0 File Offset: 0x0000A3B0
[Token(Token = "0x6000E3B")]
[Address(RVA = "0x3287310", Offset = "0x3286110", VA = "0x183287310", Slot = "13")]
int IConvertible.ToInt32(IFormatProvider provider)
{
return 0;
}
/// For a description of this member, see .
/// This parameter is ignored.
/// The value of the current instance, converted to a .
// Token: 0x06000E3C RID: 3644 RVA: 0x0000C1C8 File Offset: 0x0000A3C8
[Token(Token = "0x6000E3C")]
[Address(RVA = "0x3287580", Offset = "0x3286380", VA = "0x183287580", Slot = "14")]
uint IConvertible.ToUInt32(IFormatProvider provider)
{
return 0U;
}
/// For a description of this member, see .
/// This parameter is ignored.
/// The value of the current instance, converted to an .
// Token: 0x06000E3D RID: 3645 RVA: 0x0000C1E0 File Offset: 0x0000A3E0
[Token(Token = "0x6000E3D")]
[Address(RVA = "0x3287370", Offset = "0x3286170", VA = "0x183287370", Slot = "15")]
long IConvertible.ToInt64(IFormatProvider provider)
{
return 0L;
}
/// For a description of this member, see .
/// This parameter is ignored.
/// The value of the current instance, unchanged.
// Token: 0x06000E3E RID: 3646 RVA: 0x0000C1F8 File Offset: 0x0000A3F8
[Token(Token = "0x6000E3E")]
[Address(RVA = "0x41D090", Offset = "0x41BE90", VA = "0x18041D090", Slot = "16")]
ulong IConvertible.ToUInt64(IFormatProvider provider)
{
return 0UL;
}
/// For a description of this member, see .
/// This parameter is ignored.
/// The value of the current instance, converted to a .
// Token: 0x06000E3F RID: 3647 RVA: 0x0000C210 File Offset: 0x0000A410
[Token(Token = "0x6000E3F")]
[Address(RVA = "0x3287430", Offset = "0x3286230", VA = "0x183287430", Slot = "17")]
float IConvertible.ToSingle(IFormatProvider provider)
{
return 0f;
}
/// For a description of this member, see .
/// This parameter is ignored.
/// The value of the current instance, converted to a .
// Token: 0x06000E40 RID: 3648 RVA: 0x0000C228 File Offset: 0x0000A428
[Token(Token = "0x6000E40")]
[Address(RVA = "0x3287250", Offset = "0x3286050", VA = "0x183287250", Slot = "18")]
double IConvertible.ToDouble(IFormatProvider provider)
{
return 0.0;
}
/// For a description of this member, see .
/// This parameter is ignored.
/// The value of the current instance, converted to a .
// Token: 0x06000E41 RID: 3649 RVA: 0x0000C240 File Offset: 0x0000A440
[Token(Token = "0x6000E41")]
[Address(RVA = "0x32871E0", Offset = "0x3285FE0", VA = "0x1832871E0", Slot = "19")]
decimal IConvertible.ToDecimal(IFormatProvider provider)
{
return 0m;
}
/// This conversion is not supported. Attempting to use this method throws an .
/// This parameter is ignored.
/// This conversion is not supported. No value is returned.
/// In all cases.
// Token: 0x06000E42 RID: 3650 RVA: 0x0000C258 File Offset: 0x0000A458
[Token(Token = "0x6000E42")]
[Address(RVA = "0x3287110", Offset = "0x3285F10", VA = "0x183287110", Slot = "20")]
DateTime IConvertible.ToDateTime(IFormatProvider provider)
{
return default(DateTime);
}
/// For a description of this member, see .
/// The type to which to convert this value.
/// An implementation that supplies information about the format of the returned value.
/// The value of the current instance, converted to .
// Token: 0x06000E43 RID: 3651 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6000E43")]
[Address(RVA = "0x3287490", Offset = "0x3286290", VA = "0x183287490", Slot = "22")]
object IConvertible.ToType(Type type, IFormatProvider provider)
{
return null;
}
// Token: 0x04000576 RID: 1398
[global::Cpp2IlInjected.FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000576")]
private ulong m_value;
/// Represents the largest possible value of . This field is constant.
// Token: 0x04000577 RID: 1399
[Token(Token = "0x4000577")]
public const ulong MaxValue = 18446744073709551615UL;
/// Represents the smallest possible value of . This field is constant.
// Token: 0x04000578 RID: 1400
[Token(Token = "0x4000578")]
public const ulong MinValue = 0UL;
}
}