458 lines
26 KiB
C#
458 lines
26 KiB
C#
using System;
|
|
using System.Globalization;
|
|
using System.Runtime.InteropServices;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System
|
|
{
|
|
/// <summary>Represents a 64-bit unsigned integer.</summary>
|
|
// Token: 0x02000154 RID: 340
|
|
[Token(Token = "0x2000154")]
|
|
[CLSCompliant(false)]
|
|
[ComVisible(true)]
|
|
[Serializable]
|
|
public struct UInt64 : IComparable, IFormattable, IConvertible, IComparable<ulong>, IEquatable<ulong>
|
|
{
|
|
/// <summary>Compares this instance to a specified object and returns an indication of their relative values.</summary>
|
|
/// <param name="value">An object to compare, or <see langword="null" />.</param>
|
|
/// <returns>A signed number indicating the relative values of this instance and <paramref name="value" />.
|
|
/// Return Value
|
|
///
|
|
/// Description
|
|
///
|
|
/// Less than zero
|
|
///
|
|
/// This instance is less than <paramref name="value" />.
|
|
///
|
|
/// Zero
|
|
///
|
|
/// This instance is equal to <paramref name="value" />.
|
|
///
|
|
/// Greater than zero
|
|
///
|
|
/// This instance is greater than <paramref name="value" />.
|
|
///
|
|
/// -or-
|
|
///
|
|
/// <paramref name="value" /> is <see langword="null" />.</returns>
|
|
/// <exception cref="T:System.ArgumentException">
|
|
/// <paramref name="value" /> is not a <see cref="T:System.UInt64" />.</exception>
|
|
// 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;
|
|
}
|
|
|
|
/// <summary>Compares this instance to a specified 64-bit unsigned integer and returns an indication of their relative values.</summary>
|
|
/// <param name="value">An unsigned integer to compare.</param>
|
|
/// <returns>A signed number indicating the relative values of this instance and <paramref name="value" />.
|
|
/// Return Value
|
|
///
|
|
/// Description
|
|
///
|
|
/// Less than zero
|
|
///
|
|
/// This instance is less than <paramref name="value" />.
|
|
///
|
|
/// Zero
|
|
///
|
|
/// This instance is equal to <paramref name="value" />.
|
|
///
|
|
/// Greater than zero
|
|
///
|
|
/// This instance is greater than <paramref name="value" />.</returns>
|
|
// 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;
|
|
}
|
|
|
|
/// <summary>Returns a value indicating whether this instance is equal to a specified object.</summary>
|
|
/// <param name="obj">An object to compare to this instance.</param>
|
|
/// <returns>
|
|
/// <see langword="true" /> if <paramref name="obj" /> is an instance of <see cref="T:System.UInt64" /> and equals the value of this instance; otherwise, <see langword="false" />.</returns>
|
|
// 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);
|
|
}
|
|
|
|
/// <summary>Returns a value indicating whether this instance is equal to a specified <see cref="T:System.UInt64" /> value.</summary>
|
|
/// <param name="obj">A <see cref="T:System.UInt64" /> value to compare to this instance.</param>
|
|
/// <returns>
|
|
/// <see langword="true" /> if <paramref name="obj" /> has the same value as this instance; otherwise, <see langword="false" />.</returns>
|
|
// 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);
|
|
}
|
|
|
|
/// <summary>Returns the hash code for this instance.</summary>
|
|
/// <returns>A 32-bit signed integer hash code.</returns>
|
|
// 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;
|
|
}
|
|
|
|
/// <summary>Converts the numeric value of this instance to its equivalent string representation.</summary>
|
|
/// <returns>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.</returns>
|
|
// 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;
|
|
}
|
|
|
|
/// <summary>Converts the numeric value of this instance to its equivalent string representation using the specified culture-specific format information.</summary>
|
|
/// <param name="provider">An object that supplies culture-specific formatting information.</param>
|
|
/// <returns>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.</returns>
|
|
// 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;
|
|
}
|
|
|
|
/// <summary>Converts the numeric value of this instance to its equivalent string representation using the specified format.</summary>
|
|
/// <param name="format">A numeric format string.</param>
|
|
/// <returns>The string representation of the value of this instance as specified by <paramref name="format" />.</returns>
|
|
/// <exception cref="T:System.FormatException">The <paramref name="format" /> parameter is invalid.</exception>
|
|
// 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;
|
|
}
|
|
|
|
/// <summary>Converts the numeric value of this instance to its equivalent string representation using the specified format and culture-specific format information.</summary>
|
|
/// <param name="format">A numeric format string.</param>
|
|
/// <param name="provider">An object that supplies culture-specific formatting information about this instance.</param>
|
|
/// <returns>The string representation of the value of this instance as specified by <paramref name="format" /> and <paramref name="provider" />.</returns>
|
|
/// <exception cref="T:System.FormatException">The <paramref name="format" /> parameter is invalid.</exception>
|
|
// 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;
|
|
}
|
|
|
|
/// <summary>Converts the string representation of a number to its 64-bit unsigned integer equivalent.</summary>
|
|
/// <param name="s">A string that represents the number to convert.</param>
|
|
/// <returns>A 64-bit unsigned integer equivalent to the number contained in <paramref name="s" />.</returns>
|
|
/// <exception cref="T:System.ArgumentNullException">The <paramref name="s" /> parameter is <see langword="null" />.</exception>
|
|
/// <exception cref="T:System.FormatException">The <paramref name="s" /> parameter is not in the correct format.</exception>
|
|
/// <exception cref="T:System.OverflowException">The <paramref name="s" /> parameter represents a number less than <see cref="F:System.UInt64.MinValue" /> or greater than <see cref="F:System.UInt64.MaxValue" />.</exception>
|
|
// 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;
|
|
}
|
|
|
|
/// <summary>Converts the string representation of a number in a specified style to its 64-bit unsigned integer equivalent.</summary>
|
|
/// <param name="s">A string that represents the number to convert. The string is interpreted by using the style specified by the <paramref name="style" /> parameter.</param>
|
|
/// <param name="style">A bitwise combination of the enumeration values that specifies the permitted format of <paramref name="s" />. A typical value to specify is <see cref="F:System.Globalization.NumberStyles.Integer" />.</param>
|
|
/// <returns>A 64-bit unsigned integer equivalent to the number specified in <paramref name="s" />.</returns>
|
|
/// <exception cref="T:System.ArgumentNullException">The <paramref name="s" /> parameter is <see langword="null" />.</exception>
|
|
/// <exception cref="T:System.ArgumentException">
|
|
/// <paramref name="style" /> is not a <see cref="T:System.Globalization.NumberStyles" /> value.
|
|
/// -or-
|
|
/// <paramref name="style" /> is not a combination of <see cref="F:System.Globalization.NumberStyles.AllowHexSpecifier" /> and <see cref="F:System.Globalization.NumberStyles.HexNumber" /> values.</exception>
|
|
/// <exception cref="T:System.FormatException">The <paramref name="s" /> parameter is not in a format compliant with <paramref name="style" />.</exception>
|
|
/// <exception cref="T:System.OverflowException">The <paramref name="s" /> parameter represents a number less than <see cref="F:System.UInt64.MinValue" /> or greater than <see cref="F:System.UInt64.MaxValue" />.
|
|
/// -or-
|
|
/// <paramref name="s" /> includes non-zero, fractional digits.</exception>
|
|
// 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;
|
|
}
|
|
|
|
/// <summary>Converts the string representation of a number in a specified culture-specific format to its 64-bit unsigned integer equivalent.</summary>
|
|
/// <param name="s">A string that represents the number to convert.</param>
|
|
/// <param name="provider">An object that supplies culture-specific formatting information about <paramref name="s" />.</param>
|
|
/// <returns>A 64-bit unsigned integer equivalent to the number specified in <paramref name="s" />.</returns>
|
|
/// <exception cref="T:System.ArgumentNullException">The <paramref name="s" /> parameter is <see langword="null" />.</exception>
|
|
/// <exception cref="T:System.FormatException">The <paramref name="s" /> parameter is not in the correct style.</exception>
|
|
/// <exception cref="T:System.OverflowException">The <paramref name="s" /> parameter represents a number less than <see cref="F:System.UInt64.MinValue" /> or greater than <see cref="F:System.UInt64.MaxValue" />.</exception>
|
|
// 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;
|
|
}
|
|
|
|
/// <summary>Converts the string representation of a number in a specified style and culture-specific format to its 64-bit unsigned integer equivalent.</summary>
|
|
/// <param name="s">A string that represents the number to convert. The string is interpreted by using the style specified by the <paramref name="style" /> parameter.</param>
|
|
/// <param name="style">A bitwise combination of enumeration values that indicates the style elements that can be present in <paramref name="s" />. A typical value to specify is <see cref="F:System.Globalization.NumberStyles.Integer" />.</param>
|
|
/// <param name="provider">An object that supplies culture-specific formatting information about <paramref name="s" />.</param>
|
|
/// <returns>A 64-bit unsigned integer equivalent to the number specified in <paramref name="s" />.</returns>
|
|
/// <exception cref="T:System.ArgumentNullException">The <paramref name="s" /> parameter is <see langword="null" />.</exception>
|
|
/// <exception cref="T:System.ArgumentException">
|
|
/// <paramref name="style" /> is not a <see cref="T:System.Globalization.NumberStyles" /> value.
|
|
/// -or-
|
|
/// <paramref name="style" /> is not a combination of <see cref="F:System.Globalization.NumberStyles.AllowHexSpecifier" /> and <see cref="F:System.Globalization.NumberStyles.HexNumber" /> values.</exception>
|
|
/// <exception cref="T:System.FormatException">The <paramref name="s" /> parameter is not in a format compliant with <paramref name="style" />.</exception>
|
|
/// <exception cref="T:System.OverflowException">The <paramref name="s" /> parameter represents a number less than <see cref="F:System.UInt64.MinValue" /> or greater than <see cref="F:System.UInt64.MaxValue" />.
|
|
/// -or-
|
|
/// <paramref name="s" /> includes non-zero, fractional digits.</exception>
|
|
// 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;
|
|
}
|
|
|
|
/// <summary>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.</summary>
|
|
/// <param name="s">A string that represents the number to convert.</param>
|
|
/// <param name="result">When this method returns, contains the 64-bit unsigned integer value that is equivalent to the number contained in <paramref name="s" />, if the conversion succeeded, or zero if the conversion failed. The conversion fails if the <paramref name="s" /> parameter is <see langword="null" /> or <see cref="F:System.String.Empty" />, is not of the correct format, or represents a number less than <see cref="F:System.UInt64.MinValue" /> or greater than <see cref="F:System.UInt64.MaxValue" />. This parameter is passed uninitialized; any value originally supplied in <paramref name="result" /> will be overwritten.</param>
|
|
/// <returns>
|
|
/// <see langword="true" /> if <paramref name="s" /> was converted successfully; otherwise, <see langword="false" />.</returns>
|
|
// 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);
|
|
}
|
|
|
|
/// <summary>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.</summary>
|
|
/// <param name="s">A string that represents the number to convert. The string is interpreted by using the style specified by the <paramref name="style" /> parameter.</param>
|
|
/// <param name="style">A bitwise combination of enumeration values that indicates the permitted format of <paramref name="s" />. A typical value to specify is <see cref="F:System.Globalization.NumberStyles.Integer" />.</param>
|
|
/// <param name="provider">An object that supplies culture-specific formatting information about <paramref name="s" />.</param>
|
|
/// <param name="result">When this method returns, contains the 64-bit unsigned integer value equivalent to the number contained in <paramref name="s" />, if the conversion succeeded, or zero if the conversion failed. The conversion fails if the <paramref name="s" /> parameter is <see langword="null" /> or <see cref="F:System.String.Empty" />, is not in a format compliant with <paramref name="style" />, or represents a number less than <see cref="F:System.UInt64.MinValue" /> or greater than <see cref="F:System.UInt64.MaxValue" />. This parameter is passed uninitialized; any value originally supplied in <paramref name="result" /> will be overwritten.</param>
|
|
/// <returns>
|
|
/// <see langword="true" /> if <paramref name="s" /> was converted successfully; otherwise, <see langword="false" />.</returns>
|
|
/// <exception cref="T:System.ArgumentException">
|
|
/// <paramref name="style" /> is not a <see cref="T:System.Globalization.NumberStyles" /> value.
|
|
/// -or-
|
|
/// <paramref name="style" /> is not a combination of <see cref="F:System.Globalization.NumberStyles.AllowHexSpecifier" /> and <see cref="F:System.Globalization.NumberStyles.HexNumber" /> values.</exception>
|
|
// 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);
|
|
}
|
|
|
|
/// <summary>Returns the <see cref="T:System.TypeCode" /> for value type <see cref="T:System.UInt64" />.</summary>
|
|
/// <returns>The enumerated constant, <see cref="F:System.TypeCode.UInt64" />.</returns>
|
|
// 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;
|
|
}
|
|
|
|
/// <summary>For a description of this member, see <see cref="M:System.IConvertible.ToBoolean(System.IFormatProvider)" />.</summary>
|
|
/// <param name="provider">This parameter is ignored.</param>
|
|
/// <returns>
|
|
/// <see langword="true" /> if the value of the current instance is not zero; otherwise, <see langword="false" />.</returns>
|
|
// 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);
|
|
}
|
|
|
|
/// <summary>For a description of this member, see <see cref="M:System.IConvertible.ToChar(System.IFormatProvider)" />.</summary>
|
|
/// <param name="provider">This parameter is ignored.</param>
|
|
/// <returns>The value of the current instance, converted to a <see cref="T:System.Char" />.</returns>
|
|
// 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';
|
|
}
|
|
|
|
/// <summary>For a description of this member, see <see cref="M:System.IConvertible.ToSByte(System.IFormatProvider)" />.</summary>
|
|
/// <param name="provider">This parameter is ignored.</param>
|
|
/// <returns>The value of the current instance, converted to an <see cref="T:System.SByte" />.</returns>
|
|
// 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;
|
|
}
|
|
|
|
/// <summary>For a description of this member, see <see cref="M:System.IConvertible.ToByte(System.IFormatProvider)" />.</summary>
|
|
/// <param name="provider">This parameter is ignored.</param>
|
|
/// <returns>The value of the current instance, converted to a <see cref="T:System.Byte" />.</returns>
|
|
// 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;
|
|
}
|
|
|
|
/// <summary>For a description of this member, see <see cref="M:System.IConvertible.ToInt16(System.IFormatProvider)" />.</summary>
|
|
/// <param name="provider">This parameter is ignored.</param>
|
|
/// <returns>The value of the current instance, converted to an <see cref="T:System.Int16" />.</returns>
|
|
// 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;
|
|
}
|
|
|
|
/// <summary>For a description of this member, see <see cref="M:System.IConvertible.ToUInt16(System.IFormatProvider)" />.</summary>
|
|
/// <param name="provider">This parameter is ignored.</param>
|
|
/// <returns>The value of the current instance, converted to a <see cref="T:System.UInt16" />.</returns>
|
|
// 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;
|
|
}
|
|
|
|
/// <summary>For a description of this member, see <see cref="M:System.IConvertible.ToInt32(System.IFormatProvider)" />.</summary>
|
|
/// <param name="provider">This parameter is ignored.</param>
|
|
/// <returns>The value of the current instance, converted to an <see cref="T:System.Int32" />.</returns>
|
|
// 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;
|
|
}
|
|
|
|
/// <summary>For a description of this member, see <see cref="M:System.IConvertible.ToUInt32(System.IFormatProvider)" />.</summary>
|
|
/// <param name="provider">This parameter is ignored.</param>
|
|
/// <returns>The value of the current instance, converted to a <see cref="T:System.UInt32" />.</returns>
|
|
// 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;
|
|
}
|
|
|
|
/// <summary>For a description of this member, see <see cref="M:System.IConvertible.ToInt64(System.IFormatProvider)" />.</summary>
|
|
/// <param name="provider">This parameter is ignored.</param>
|
|
/// <returns>The value of the current instance, converted to an <see cref="T:System.Int64" />.</returns>
|
|
// 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;
|
|
}
|
|
|
|
/// <summary>For a description of this member, see <see cref="M:System.IConvertible.ToUInt64(System.IFormatProvider)" />.</summary>
|
|
/// <param name="provider">This parameter is ignored.</param>
|
|
/// <returns>The value of the current instance, unchanged.</returns>
|
|
// 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;
|
|
}
|
|
|
|
/// <summary>For a description of this member, see <see cref="M:System.IConvertible.ToSingle(System.IFormatProvider)" />.</summary>
|
|
/// <param name="provider">This parameter is ignored.</param>
|
|
/// <returns>The value of the current instance, converted to a <see cref="T:System.Single" />.</returns>
|
|
// 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;
|
|
}
|
|
|
|
/// <summary>For a description of this member, see <see cref="M:System.IConvertible.ToDouble(System.IFormatProvider)" />.</summary>
|
|
/// <param name="provider">This parameter is ignored.</param>
|
|
/// <returns>The value of the current instance, converted to a <see cref="T:System.Double" />.</returns>
|
|
// 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;
|
|
}
|
|
|
|
/// <summary>For a description of this member, see <see cref="M:System.IConvertible.ToDecimal(System.IFormatProvider)" />.</summary>
|
|
/// <param name="provider">This parameter is ignored.</param>
|
|
/// <returns>The value of the current instance, converted to a <see cref="T:System.Decimal" />.</returns>
|
|
// 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;
|
|
}
|
|
|
|
/// <summary>This conversion is not supported. Attempting to use this method throws an <see cref="T:System.InvalidCastException" />.</summary>
|
|
/// <param name="provider">This parameter is ignored.</param>
|
|
/// <returns>This conversion is not supported. No value is returned.</returns>
|
|
/// <exception cref="T:System.InvalidCastException">In all cases.</exception>
|
|
// 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);
|
|
}
|
|
|
|
/// <summary>For a description of this member, see <see cref="M:System.IConvertible.ToType(System.Type,System.IFormatProvider)" />.</summary>
|
|
/// <param name="type">The type to which to convert this <see cref="T:System.UInt64" /> value.</param>
|
|
/// <param name="provider">An <see cref="T:System.IFormatProvider" /> implementation that supplies information about the format of the returned value.</param>
|
|
/// <returns>The value of the current instance, converted to <paramref name="type" />.</returns>
|
|
// 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;
|
|
|
|
/// <summary>Represents the largest possible value of <see cref="T:System.UInt64" />. This field is constant.</summary>
|
|
// Token: 0x04000577 RID: 1399
|
|
[Token(Token = "0x4000577")]
|
|
public const ulong MaxValue = 18446744073709551615UL;
|
|
|
|
/// <summary>Represents the smallest possible value of <see cref="T:System.UInt64" />. This field is constant.</summary>
|
|
// Token: 0x04000578 RID: 1400
|
|
[Token(Token = "0x4000578")]
|
|
public const ulong MinValue = 0UL;
|
|
}
|
|
}
|