m
This commit is contained in:
@@ -0,0 +1,457 @@
|
||||
using System;
|
||||
using System.Globalization;
|
||||
using System.Runtime.InteropServices;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System
|
||||
{
|
||||
/// <summary>Represents a 64-bit unsigned integer.</summary>
|
||||
// Token: 0x0200015B RID: 347
|
||||
[Token(Token = "0x200015B")]
|
||||
[ComVisible(true)]
|
||||
[CLSCompliant(false)]
|
||||
[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: 0x06000E59 RID: 3673 RVA: 0x0000C2E8 File Offset: 0x0000A4E8
|
||||
[Token(Token = "0x6000E59")]
|
||||
[Address(RVA = "0x3BB7360", Offset = "0x3BB6360", VA = "0x183BB7360", 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: 0x06000E5A RID: 3674 RVA: 0x0000C300 File Offset: 0x0000A500
|
||||
[Token(Token = "0x6000E5A")]
|
||||
[Address(RVA = "0x3BB7340", Offset = "0x3BB6340", VA = "0x183BB7340", 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: 0x06000E5B RID: 3675 RVA: 0x0000C318 File Offset: 0x0000A518
|
||||
[Token(Token = "0x6000E5B")]
|
||||
[Address(RVA = "0x3BB7440", Offset = "0x3BB6440", VA = "0x183BB7440", 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: 0x06000E5C RID: 3676 RVA: 0x0000C330 File Offset: 0x0000A530
|
||||
[Token(Token = "0x6000E5C")]
|
||||
[Address(RVA = "0x593190", Offset = "0x592190", VA = "0x180593190", 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: 0x06000E5D RID: 3677 RVA: 0x0000C348 File Offset: 0x0000A548
|
||||
[Token(Token = "0x6000E5D")]
|
||||
[Address(RVA = "0x3BB74D0", Offset = "0x3BB64D0", VA = "0x183BB74D0", 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: 0x06000E5E RID: 3678 RVA: 0x00002082 File Offset: 0x00000282
|
||||
[Token(Token = "0x6000E5E")]
|
||||
[Address(RVA = "0x3BB7C30", Offset = "0x3BB6C30", VA = "0x183BB7C30", 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: 0x06000E5F RID: 3679 RVA: 0x00002082 File Offset: 0x00000282
|
||||
[Token(Token = "0x6000E5F")]
|
||||
[Address(RVA = "0x3BB7C00", Offset = "0x3BB6C00", VA = "0x183BB7C00", 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: 0x06000E60 RID: 3680 RVA: 0x00002082 File Offset: 0x00000282
|
||||
[Token(Token = "0x6000E60")]
|
||||
[Address(RVA = "0x3BB7BC0", Offset = "0x3BB6BC0", VA = "0x183BB7BC0")]
|
||||
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: 0x06000E61 RID: 3681 RVA: 0x00002082 File Offset: 0x00000282
|
||||
[Token(Token = "0x6000E61")]
|
||||
[Address(RVA = "0x3BB7C60", Offset = "0x3BB6C60", VA = "0x183BB7C60", 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: 0x06000E62 RID: 3682 RVA: 0x0000C360 File Offset: 0x0000A560
|
||||
[Token(Token = "0x6000E62")]
|
||||
[Address(RVA = "0x3BB75A0", Offset = "0x3BB65A0", VA = "0x183BB75A0")]
|
||||
[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: 0x06000E63 RID: 3683 RVA: 0x0000C378 File Offset: 0x0000A578
|
||||
[Token(Token = "0x6000E63")]
|
||||
[Address(RVA = "0x3BB74E0", Offset = "0x3BB64E0", VA = "0x183BB74E0")]
|
||||
[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: 0x06000E64 RID: 3684 RVA: 0x0000C390 File Offset: 0x0000A590
|
||||
[Token(Token = "0x6000E64")]
|
||||
[Address(RVA = "0x3BB7520", Offset = "0x3BB6520", VA = "0x183BB7520")]
|
||||
[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: 0x06000E65 RID: 3685 RVA: 0x0000C3A8 File Offset: 0x0000A5A8
|
||||
[Token(Token = "0x6000E65")]
|
||||
[Address(RVA = "0x3BB7550", Offset = "0x3BB6550", VA = "0x183BB7550")]
|
||||
[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: 0x06000E66 RID: 3686 RVA: 0x0000C3C0 File Offset: 0x0000A5C0
|
||||
[Token(Token = "0x6000E66")]
|
||||
[Address(RVA = "0x3BB7D00", Offset = "0x3BB6D00", VA = "0x183BB7D00")]
|
||||
[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: 0x06000E67 RID: 3687 RVA: 0x0000C3D8 File Offset: 0x0000A5D8
|
||||
[Token(Token = "0x6000E67")]
|
||||
[Address(RVA = "0x3BB7CA0", Offset = "0x3BB6CA0", VA = "0x183BB7CA0")]
|
||||
[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: 0x06000E68 RID: 3688 RVA: 0x0000C3F0 File Offset: 0x0000A5F0
|
||||
[Token(Token = "0x6000E68")]
|
||||
[Address(RVA = "0x4B2B30", Offset = "0x4B1B30", VA = "0x1804B2B30", 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: 0x06000E69 RID: 3689 RVA: 0x0000C408 File Offset: 0x0000A608
|
||||
[Token(Token = "0x6000E69")]
|
||||
[Address(RVA = "0x3BB75D0", Offset = "0x3BB65D0", VA = "0x183BB75D0", 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: 0x06000E6A RID: 3690 RVA: 0x0000C420 File Offset: 0x0000A620
|
||||
[Token(Token = "0x6000E6A")]
|
||||
[Address(RVA = "0x3BB7690", Offset = "0x3BB6690", VA = "0x183BB7690", 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: 0x06000E6B RID: 3691 RVA: 0x0000C438 File Offset: 0x0000A638
|
||||
[Token(Token = "0x6000E6B")]
|
||||
[Address(RVA = "0x3BB79B0", Offset = "0x3BB69B0", VA = "0x183BB79B0", 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: 0x06000E6C RID: 3692 RVA: 0x0000C450 File Offset: 0x0000A650
|
||||
[Token(Token = "0x6000E6C")]
|
||||
[Address(RVA = "0x3BB7630", Offset = "0x3BB6630", VA = "0x183BB7630", 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: 0x06000E6D RID: 3693 RVA: 0x0000C468 File Offset: 0x0000A668
|
||||
[Token(Token = "0x6000E6D")]
|
||||
[Address(RVA = "0x3BB7890", Offset = "0x3BB6890", VA = "0x183BB7890", 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: 0x06000E6E RID: 3694 RVA: 0x0000C480 File Offset: 0x0000A680
|
||||
[Token(Token = "0x6000E6E")]
|
||||
[Address(RVA = "0x3BB7B00", Offset = "0x3BB6B00", VA = "0x183BB7B00", 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: 0x06000E6F RID: 3695 RVA: 0x0000C498 File Offset: 0x0000A698
|
||||
[Token(Token = "0x6000E6F")]
|
||||
[Address(RVA = "0x3BB78F0", Offset = "0x3BB68F0", VA = "0x183BB78F0", 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: 0x06000E70 RID: 3696 RVA: 0x0000C4B0 File Offset: 0x0000A6B0
|
||||
[Token(Token = "0x6000E70")]
|
||||
[Address(RVA = "0x3BB7B60", Offset = "0x3BB6B60", VA = "0x183BB7B60", 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: 0x06000E71 RID: 3697 RVA: 0x0000C4C8 File Offset: 0x0000A6C8
|
||||
[Token(Token = "0x6000E71")]
|
||||
[Address(RVA = "0x3BB7950", Offset = "0x3BB6950", VA = "0x183BB7950", 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: 0x06000E72 RID: 3698 RVA: 0x0000C4E0 File Offset: 0x0000A6E0
|
||||
[Token(Token = "0x6000E72")]
|
||||
[Address(RVA = "0x63E630", Offset = "0x63D630", VA = "0x18063E630", 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: 0x06000E73 RID: 3699 RVA: 0x0000C4F8 File Offset: 0x0000A6F8
|
||||
[Token(Token = "0x6000E73")]
|
||||
[Address(RVA = "0x3BB7A10", Offset = "0x3BB6A10", VA = "0x183BB7A10", 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: 0x06000E74 RID: 3700 RVA: 0x0000C510 File Offset: 0x0000A710
|
||||
[Token(Token = "0x6000E74")]
|
||||
[Address(RVA = "0x3BB7830", Offset = "0x3BB6830", VA = "0x183BB7830", 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: 0x06000E75 RID: 3701 RVA: 0x0000C528 File Offset: 0x0000A728
|
||||
[Token(Token = "0x6000E75")]
|
||||
[Address(RVA = "0x3BB77C0", Offset = "0x3BB67C0", VA = "0x183BB77C0", 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: 0x06000E76 RID: 3702 RVA: 0x0000C540 File Offset: 0x0000A740
|
||||
[Token(Token = "0x6000E76")]
|
||||
[Address(RVA = "0x3BB76F0", Offset = "0x3BB66F0", VA = "0x183BB76F0", 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: 0x06000E77 RID: 3703 RVA: 0x00002082 File Offset: 0x00000282
|
||||
[Token(Token = "0x6000E77")]
|
||||
[Address(RVA = "0x3BB7A70", Offset = "0x3BB6A70", VA = "0x183BB7A70", Slot = "22")]
|
||||
object IConvertible.ToType(Type type, IFormatProvider provider)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x04000580 RID: 1408
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x0")]
|
||||
[Token(Token = "0x4000580")]
|
||||
private ulong m_value;
|
||||
|
||||
/// <summary>Represents the largest possible value of <see cref="T:System.UInt64" />. This field is constant.</summary>
|
||||
// Token: 0x04000581 RID: 1409
|
||||
[Token(Token = "0x4000581")]
|
||||
public const ulong MaxValue = 18446744073709551615UL;
|
||||
|
||||
/// <summary>Represents the smallest possible value of <see cref="T:System.UInt64" />. This field is constant.</summary>
|
||||
// Token: 0x04000582 RID: 1410
|
||||
[Token(Token = "0x4000582")]
|
||||
public const ulong MinValue = 0UL;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user