oh dear
This commit is contained in:
@@ -0,0 +1,464 @@
|
||||
using System;
|
||||
using System.Globalization;
|
||||
using System.Runtime.InteropServices;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System
|
||||
{
|
||||
/// <summary>Represents a 32-bit signed integer.</summary>
|
||||
// Token: 0x0200010E RID: 270
|
||||
[Token(Token = "0x200010E")]
|
||||
[ComVisible(true)]
|
||||
[Serializable]
|
||||
public struct Int32 : IComparable, IFormattable, IConvertible, IComparable<int>, IEquatable<int>
|
||||
{
|
||||
/// <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 an <see cref="T:System.Int32" />.</exception>
|
||||
// Token: 0x060009D7 RID: 2519 RVA: 0x00008BC8 File Offset: 0x00006DC8
|
||||
[Token(Token = "0x60009D7")]
|
||||
[Address(RVA = "0x25FAB60", Offset = "0x25F9960", VA = "0x1825FAB60", Slot = "4")]
|
||||
public int CompareTo(object value)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
/// <summary>Compares this instance to a specified 32-bit signed integer and returns an indication of their relative values.</summary>
|
||||
/// <param name="value">An 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: 0x060009D8 RID: 2520 RVA: 0x00008BE0 File Offset: 0x00006DE0
|
||||
[Token(Token = "0x60009D8")]
|
||||
[Address(RVA = "0x25FAC40", Offset = "0x25F9A40", VA = "0x1825FAC40", Slot = "23")]
|
||||
public int CompareTo(int 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 with this instance.</param>
|
||||
/// <returns>
|
||||
/// <see langword="true" /> if <paramref name="obj" /> is an instance of <see cref="T:System.Int32" /> and equals the value of this instance; otherwise, <see langword="false" />.</returns>
|
||||
// Token: 0x060009D9 RID: 2521 RVA: 0x00008BF8 File Offset: 0x00006DF8
|
||||
[Token(Token = "0x60009D9")]
|
||||
[Address(RVA = "0x25FAC60", Offset = "0x25F9A60", VA = "0x1825FAC60", 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.Int32" /> value.</summary>
|
||||
/// <param name="obj">An <see cref="T:System.Int32" /> 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: 0x060009DA RID: 2522 RVA: 0x00008C10 File Offset: 0x00006E10
|
||||
[Token(Token = "0x60009DA")]
|
||||
[Address(RVA = "0x69AF70", Offset = "0x699D70", VA = "0x18069AF70", Slot = "24")]
|
||||
public bool Equals(int obj)
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
/// <summary>Returns the hash code for this instance.</summary>
|
||||
/// <returns>A 32-bit signed integer hash code.</returns>
|
||||
// Token: 0x060009DB RID: 2523 RVA: 0x00008C28 File Offset: 0x00006E28
|
||||
[Token(Token = "0x60009DB")]
|
||||
[Address(RVA = "0x57C620", Offset = "0x57B420", VA = "0x18057C620", 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 negative sign if the value is negative, and a sequence of digits ranging from 0 to 9 with no leading zeroes.</returns>
|
||||
// Token: 0x060009DC RID: 2524 RVA: 0x00002082 File Offset: 0x00000282
|
||||
[Token(Token = "0x60009DC")]
|
||||
[Address(RVA = "0x25FB3C0", Offset = "0x25FA1C0", VA = "0x1825FB3C0", Slot = "3")]
|
||||
public override string ToString()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
/// <summary>Converts the numeric value of this instance to its equivalent string representation, using the specified format.</summary>
|
||||
/// <param name="format">A standard or custom 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">
|
||||
/// <paramref name="format" /> is invalid or not supported.</exception>
|
||||
// Token: 0x060009DD RID: 2525 RVA: 0x00002082 File Offset: 0x00000282
|
||||
[Token(Token = "0x60009DD")]
|
||||
[Address(RVA = "0x25FB420", Offset = "0x25FA220", VA = "0x1825FB420")]
|
||||
public string ToString(string format)
|
||||
{
|
||||
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 as specified by <paramref name="provider" />.</returns>
|
||||
// Token: 0x060009DE RID: 2526 RVA: 0x00002082 File Offset: 0x00000282
|
||||
[Token(Token = "0x60009DE")]
|
||||
[Address(RVA = "0x25FB3F0", Offset = "0x25FA1F0", VA = "0x1825FB3F0", 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 and culture-specific format information.</summary>
|
||||
/// <param name="format">A standard or custom numeric format string.</param>
|
||||
/// <param name="provider">An object that supplies culture-specific formatting information.</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">
|
||||
/// <paramref name="format" /> is invalid or not supported.</exception>
|
||||
// Token: 0x060009DF RID: 2527 RVA: 0x00002082 File Offset: 0x00000282
|
||||
[Token(Token = "0x60009DF")]
|
||||
[Address(RVA = "0x25FB450", Offset = "0x25FA250", VA = "0x1825FB450", Slot = "5")]
|
||||
public string ToString(string format, IFormatProvider provider)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
/// <summary>Converts the string representation of a number to its 32-bit signed integer equivalent.</summary>
|
||||
/// <param name="s">A string containing a number to convert.</param>
|
||||
/// <returns>A 32-bit signed integer equivalent to the number contained in <paramref name="s" />.</returns>
|
||||
/// <exception cref="T:System.ArgumentNullException">
|
||||
/// <paramref name="s" /> is <see langword="null" />.</exception>
|
||||
/// <exception cref="T:System.FormatException">
|
||||
/// <paramref name="s" /> is not in the correct format.</exception>
|
||||
/// <exception cref="T:System.OverflowException">
|
||||
/// <paramref name="s" /> represents a number less than <see cref="F:System.Int32.MinValue" /> or greater than <see cref="F:System.Int32.MaxValue" />.</exception>
|
||||
// Token: 0x060009E0 RID: 2528 RVA: 0x00008C40 File Offset: 0x00006E40
|
||||
[Token(Token = "0x60009E0")]
|
||||
[Address(RVA = "0x25FAD30", Offset = "0x25F9B30", VA = "0x1825FAD30")]
|
||||
public static int Parse(string s)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
/// <summary>Converts the string representation of a number in a specified style to its 32-bit signed integer equivalent.</summary>
|
||||
/// <param name="s">A string containing a number to convert.</param>
|
||||
/// <param name="style">A bitwise combination of the 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>
|
||||
/// <returns>A 32-bit signed integer equivalent to the number specified in <paramref name="s" />.</returns>
|
||||
/// <exception cref="T:System.ArgumentNullException">
|
||||
/// <paramref name="s" /> 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">
|
||||
/// <paramref name="s" /> is not in a format compliant with <paramref name="style" />.</exception>
|
||||
/// <exception cref="T:System.OverflowException">
|
||||
/// <paramref name="s" /> represents a number less than <see cref="F:System.Int32.MinValue" /> or greater than <see cref="F:System.Int32.MaxValue" />.
|
||||
/// -or-
|
||||
/// <paramref name="s" /> includes non-zero, fractional digits.</exception>
|
||||
// Token: 0x060009E1 RID: 2529 RVA: 0x00008C58 File Offset: 0x00006E58
|
||||
[Token(Token = "0x60009E1")]
|
||||
[Address(RVA = "0x25FAD90", Offset = "0x25F9B90", VA = "0x1825FAD90")]
|
||||
public static int Parse(string s, NumberStyles style)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
/// <summary>Converts the string representation of a number in a specified culture-specific format to its 32-bit signed integer equivalent.</summary>
|
||||
/// <param name="s">A string containing a number to convert.</param>
|
||||
/// <param name="provider">An object that supplies culture-specific formatting information about <paramref name="s" />.</param>
|
||||
/// <returns>A 32-bit signed integer equivalent to the number specified in <paramref name="s" />.</returns>
|
||||
/// <exception cref="T:System.ArgumentNullException">
|
||||
/// <paramref name="s" /> is <see langword="null" />.</exception>
|
||||
/// <exception cref="T:System.FormatException">
|
||||
/// <paramref name="s" /> is not of the correct format.</exception>
|
||||
/// <exception cref="T:System.OverflowException">
|
||||
/// <paramref name="s" /> represents a number less than <see cref="F:System.Int32.MinValue" /> or greater than <see cref="F:System.Int32.MaxValue" />.</exception>
|
||||
// Token: 0x060009E2 RID: 2530 RVA: 0x00008C70 File Offset: 0x00006E70
|
||||
[Token(Token = "0x60009E2")]
|
||||
[Address(RVA = "0x25FAD60", Offset = "0x25F9B60", VA = "0x1825FAD60")]
|
||||
public static int Parse(string s, IFormatProvider provider)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
/// <summary>Converts the string representation of a number in a specified style and culture-specific format to its 32-bit signed integer equivalent.</summary>
|
||||
/// <param name="s">A string containing a number to convert.</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 information about the format of <paramref name="s" />.</param>
|
||||
/// <returns>A 32-bit signed integer equivalent to the number specified in <paramref name="s" />.</returns>
|
||||
/// <exception cref="T:System.ArgumentNullException">
|
||||
/// <paramref name="s" /> 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">
|
||||
/// <paramref name="s" /> is not in a format compliant with <paramref name="style" />.</exception>
|
||||
/// <exception cref="T:System.OverflowException">
|
||||
/// <paramref name="s" /> represents a number less than <see cref="F:System.Int32.MinValue" /> or greater than <see cref="F:System.Int32.MaxValue" />.
|
||||
/// -or-
|
||||
/// <paramref name="s" /> includes non-zero, fractional digits.</exception>
|
||||
// Token: 0x060009E3 RID: 2531 RVA: 0x00008C88 File Offset: 0x00006E88
|
||||
[Token(Token = "0x60009E3")]
|
||||
[Address(RVA = "0x25FACE0", Offset = "0x25F9AE0", VA = "0x1825FACE0")]
|
||||
public static int Parse(string s, NumberStyles style, IFormatProvider provider)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
/// <summary>Converts the string representation of a number to its 32-bit signed integer equivalent. A return value indicates whether the conversion succeeded.</summary>
|
||||
/// <param name="s">A string containing a number to convert.</param>
|
||||
/// <param name="result">When this method returns, contains the 32-bit signed integer value equivalent of 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.Int32.MinValue" /> or greater than <see cref="F:System.Int32.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: 0x060009E4 RID: 2532 RVA: 0x00008CA0 File Offset: 0x00006EA0
|
||||
[Token(Token = "0x60009E4")]
|
||||
[Address(RVA = "0x25FB490", Offset = "0x25FA290", VA = "0x1825FB490")]
|
||||
public static bool TryParse(string s, out int result)
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
/// <summary>Converts the string representation of a number in a specified style and culture-specific format to its 32-bit signed integer equivalent. A return value indicates whether the conversion succeeded.</summary>
|
||||
/// <param name="s">A string containing a number to convert. The string is interpreted using the style specified by <paramref name="style" />.</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>
|
||||
/// <param name="result">When this method returns, contains the 32-bit signed integer value equivalent of 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.Int32.MinValue" /> or greater than <see cref="F:System.Int32.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: 0x060009E5 RID: 2533 RVA: 0x00008CB8 File Offset: 0x00006EB8
|
||||
[Token(Token = "0x60009E5")]
|
||||
[Address(RVA = "0x25FB4D0", Offset = "0x25FA2D0", VA = "0x1825FB4D0")]
|
||||
public static bool TryParse(string s, NumberStyles style, IFormatProvider provider, out int result)
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
/// <summary>Returns the <see cref="T:System.TypeCode" /> for value type <see cref="T:System.Int32" />.</summary>
|
||||
/// <returns>The enumerated constant, <see cref="F:System.TypeCode.Int32" />.</returns>
|
||||
// Token: 0x060009E6 RID: 2534 RVA: 0x00008CD0 File Offset: 0x00006ED0
|
||||
[Token(Token = "0x60009E6")]
|
||||
[Address(RVA = "0x46AA40", Offset = "0x469840", VA = "0x18046AA40", 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: 0x060009E7 RID: 2535 RVA: 0x00008CE8 File Offset: 0x00006EE8
|
||||
[Token(Token = "0x60009E7")]
|
||||
[Address(RVA = "0x25FADD0", Offset = "0x25F9BD0", VA = "0x1825FADD0", 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: 0x060009E8 RID: 2536 RVA: 0x00008D00 File Offset: 0x00006F00
|
||||
[Token(Token = "0x60009E8")]
|
||||
[Address(RVA = "0x25FAE90", Offset = "0x25F9C90", VA = "0x1825FAE90", 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: 0x060009E9 RID: 2537 RVA: 0x00008D18 File Offset: 0x00006F18
|
||||
[Token(Token = "0x60009E9")]
|
||||
[Address(RVA = "0x25FB150", Offset = "0x25F9F50", VA = "0x1825FB150", 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: 0x060009EA RID: 2538 RVA: 0x00008D30 File Offset: 0x00006F30
|
||||
[Token(Token = "0x60009EA")]
|
||||
[Address(RVA = "0x25FAE30", Offset = "0x25F9C30", VA = "0x1825FAE30", 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: 0x060009EB RID: 2539 RVA: 0x00008D48 File Offset: 0x00006F48
|
||||
[Token(Token = "0x60009EB")]
|
||||
[Address(RVA = "0x25FB090", Offset = "0x25F9E90", VA = "0x1825FB090", 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: 0x060009EC RID: 2540 RVA: 0x00008D60 File Offset: 0x00006F60
|
||||
[Token(Token = "0x60009EC")]
|
||||
[Address(RVA = "0x25FB2A0", Offset = "0x25FA0A0", VA = "0x1825FB2A0", 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, unchanged.</returns>
|
||||
// Token: 0x060009ED RID: 2541 RVA: 0x00008D78 File Offset: 0x00006F78
|
||||
[Token(Token = "0x60009ED")]
|
||||
[Address(RVA = "0x57C620", Offset = "0x57B420", VA = "0x18057C620", 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: 0x060009EE RID: 2542 RVA: 0x00008D90 File Offset: 0x00006F90
|
||||
[Token(Token = "0x60009EE")]
|
||||
[Address(RVA = "0x25FB300", Offset = "0x25FA100", VA = "0x1825FB300", 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: 0x060009EF RID: 2543 RVA: 0x00008DA8 File Offset: 0x00006FA8
|
||||
[Token(Token = "0x60009EF")]
|
||||
[Address(RVA = "0x25FB0F0", Offset = "0x25F9EF0", VA = "0x1825FB0F0", 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, converted to a <see cref="T:System.UInt64" />.</returns>
|
||||
// Token: 0x060009F0 RID: 2544 RVA: 0x00008DC0 File Offset: 0x00006FC0
|
||||
[Token(Token = "0x60009F0")]
|
||||
[Address(RVA = "0x25FB360", Offset = "0x25FA160", VA = "0x1825FB360", 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: 0x060009F1 RID: 2545 RVA: 0x00008DD8 File Offset: 0x00006FD8
|
||||
[Token(Token = "0x60009F1")]
|
||||
[Address(RVA = "0x25FB1B0", Offset = "0x25F9FB0", VA = "0x1825FB1B0", 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: 0x060009F2 RID: 2546 RVA: 0x00008DF0 File Offset: 0x00006FF0
|
||||
[Token(Token = "0x60009F2")]
|
||||
[Address(RVA = "0x25FB030", Offset = "0x25F9E30", VA = "0x1825FB030", 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: 0x060009F3 RID: 2547 RVA: 0x00008E08 File Offset: 0x00007008
|
||||
[Token(Token = "0x60009F3")]
|
||||
[Address(RVA = "0x25FAFC0", Offset = "0x25F9DC0", VA = "0x1825FAFC0", 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: 0x060009F4 RID: 2548 RVA: 0x00008E20 File Offset: 0x00007020
|
||||
[Token(Token = "0x60009F4")]
|
||||
[Address(RVA = "0x25FAEF0", Offset = "0x25F9CF0", VA = "0x1825FAEF0", 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.Int32" /> value.</param>
|
||||
/// <param name="provider">An object that provides information about the format of the returned value.</param>
|
||||
/// <returns>The value of the current instance, converted to <paramref name="type" />.</returns>
|
||||
// Token: 0x060009F5 RID: 2549 RVA: 0x00002082 File Offset: 0x00000282
|
||||
[Token(Token = "0x60009F5")]
|
||||
[Address(RVA = "0x25FB210", Offset = "0x25FA010", VA = "0x1825FB210", Slot = "22")]
|
||||
object IConvertible.ToType(Type type, IFormatProvider provider)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x04000452 RID: 1106
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x0")]
|
||||
[Token(Token = "0x4000452")]
|
||||
internal int m_value;
|
||||
|
||||
/// <summary>Represents the largest possible value of an <see cref="T:System.Int32" />. This field is constant.</summary>
|
||||
// Token: 0x04000453 RID: 1107
|
||||
[Token(Token = "0x4000453")]
|
||||
public const int MaxValue = 2147483647;
|
||||
|
||||
/// <summary>Represents the smallest possible value of <see cref="T:System.Int32" />. This field is constant.</summary>
|
||||
// Token: 0x04000454 RID: 1108
|
||||
[Token(Token = "0x4000454")]
|
||||
public const int MinValue = -2147483648;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user