439 lines
23 KiB
C#
439 lines
23 KiB
C#
using System;
|
|
using System.Globalization;
|
|
using System.Runtime.InteropServices;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System
|
|
{
|
|
/// <summary>Represents an 8-bit signed integer.</summary>
|
|
// Token: 0x02000134 RID: 308
|
|
[Token(Token = "0x2000134")]
|
|
[CLSCompliant(false)]
|
|
[ComVisible(true)]
|
|
[Serializable]
|
|
public struct SByte : IComparable, IFormattable, IConvertible, IComparable<sbyte>, IEquatable<sbyte>
|
|
{
|
|
/// <summary>Compares this instance to a specified object and returns an indication of their relative values.</summary>
|
|
/// <param name="obj">An object to compare, or <see langword="null" />.</param>
|
|
/// <returns>A signed number indicating the relative values of this instance and <paramref name="obj" />.
|
|
/// Return Value
|
|
///
|
|
/// Description
|
|
///
|
|
/// Less than zero
|
|
///
|
|
/// This instance is less than <paramref name="obj" />.
|
|
///
|
|
/// Zero
|
|
///
|
|
/// This instance is equal to <paramref name="obj" />.
|
|
///
|
|
/// Greater than zero
|
|
///
|
|
/// This instance is greater than <paramref name="obj" />.
|
|
///
|
|
/// -or-
|
|
///
|
|
/// <paramref name="obj" /> is <see langword="null" />.</returns>
|
|
/// <exception cref="T:System.ArgumentException">
|
|
/// <paramref name="obj" /> is not an <see cref="T:System.SByte" />.</exception>
|
|
// Token: 0x06000B6E RID: 2926 RVA: 0x00009E28 File Offset: 0x00008028
|
|
[Token(Token = "0x6000B6E")]
|
|
[Address(RVA = "0x299AFF0", Offset = "0x2999DF0", VA = "0x18299AFF0", Slot = "4")]
|
|
public int CompareTo(object obj)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
/// <summary>Compares this instance to a specified 8-bit signed integer and returns an indication of their relative values.</summary>
|
|
/// <param name="value">An 8-bit signed integer to compare.</param>
|
|
/// <returns>A signed integer that indicates the relative order 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: 0x06000B6F RID: 2927 RVA: 0x00009E40 File Offset: 0x00008040
|
|
[Token(Token = "0x6000B6F")]
|
|
[Address(RVA = "0x299AFE0", Offset = "0x2999DE0", VA = "0x18299AFE0", Slot = "23")]
|
|
public int CompareTo(sbyte 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.SByte" /> and equals the value of this instance; otherwise, <see langword="false" />.</returns>
|
|
// Token: 0x06000B70 RID: 2928 RVA: 0x00009E58 File Offset: 0x00008058
|
|
[Token(Token = "0x6000B70")]
|
|
[Address(RVA = "0x299B0C0", Offset = "0x2999EC0", VA = "0x18299B0C0", 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.SByte" /> value.</summary>
|
|
/// <param name="obj">An <see cref="T:System.SByte" /> 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: 0x06000B71 RID: 2929 RVA: 0x00009E70 File Offset: 0x00008070
|
|
[Token(Token = "0x6000B71")]
|
|
[Address(RVA = "0x26C9190", Offset = "0x26C7F90", VA = "0x1826C9190", Slot = "24")]
|
|
public bool Equals(sbyte obj)
|
|
{
|
|
return default(bool);
|
|
}
|
|
|
|
/// <summary>Returns the hash code for this instance.</summary>
|
|
/// <returns>A 32-bit signed integer hash code.</returns>
|
|
// Token: 0x06000B72 RID: 2930 RVA: 0x00009E88 File Offset: 0x00008088
|
|
[Token(Token = "0x6000B72")]
|
|
[Address(RVA = "0x299B150", Offset = "0x2999F50", VA = "0x18299B150", 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: 0x06000B73 RID: 2931 RVA: 0x00002082 File Offset: 0x00000282
|
|
[Token(Token = "0x6000B73")]
|
|
[Address(RVA = "0x299BA20", Offset = "0x299A820", VA = "0x18299BA20", 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, as specified by <paramref name="provider" />.</returns>
|
|
// Token: 0x06000B74 RID: 2932 RVA: 0x00002082 File Offset: 0x00000282
|
|
[Token(Token = "0x6000B74")]
|
|
[Address(RVA = "0x299B9B0", Offset = "0x299A7B0", VA = "0x18299B9B0", 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 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.</exception>
|
|
// Token: 0x06000B75 RID: 2933 RVA: 0x00002082 File Offset: 0x00000282
|
|
[Token(Token = "0x6000B75")]
|
|
[Address(RVA = "0x299B8D0", Offset = "0x299A6D0", VA = "0x18299B8D0")]
|
|
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 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.</exception>
|
|
// Token: 0x06000B76 RID: 2934 RVA: 0x00002082 File Offset: 0x00000282
|
|
[Token(Token = "0x6000B76")]
|
|
[Address(RVA = "0x299B9E0", Offset = "0x299A7E0", VA = "0x18299B9E0", Slot = "5")]
|
|
public string ToString(string format, IFormatProvider provider)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
// Token: 0x06000B77 RID: 2935 RVA: 0x00002082 File Offset: 0x00000282
|
|
[Token(Token = "0x6000B77")]
|
|
[Address(RVA = "0x299B910", Offset = "0x299A710", VA = "0x18299B910")]
|
|
private string ToString(string format, NumberFormatInfo info)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
/// <summary>Converts the string representation of a number in a specified culture-specific format to its 8-bit signed integer equivalent.</summary>
|
|
/// <param name="s">A string that represents a number to convert. The string is interpreted using the <see cref="F:System.Globalization.NumberStyles.Integer" /> style.</param>
|
|
/// <param name="provider">An object that supplies culture-specific formatting information about <paramref name="s" />. If <paramref name="provider" /> is <see langword="null" />, the thread current culture is used.</param>
|
|
/// <returns>An 8-bit signed integer that is 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 in the correct format.</exception>
|
|
/// <exception cref="T:System.OverflowException">
|
|
/// <paramref name="s" /> represents a number less than <see cref="F:System.SByte.MinValue" /> or greater than <see cref="F:System.SByte.MaxValue" />.</exception>
|
|
// Token: 0x06000B78 RID: 2936 RVA: 0x00009EA0 File Offset: 0x000080A0
|
|
[Token(Token = "0x6000B78")]
|
|
[Address(RVA = "0x299B1B0", Offset = "0x2999FB0", VA = "0x18299B1B0")]
|
|
[CLSCompliant(false)]
|
|
public static sbyte Parse(string s, IFormatProvider provider)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
/// <summary>Converts the string representation of a number that is in a specified style and culture-specific format to its 8-bit signed equivalent.</summary>
|
|
/// <param name="s">A string that contains the number to convert. The string is interpreted by using the style specified by <paramref name="style" />.</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>
|
|
/// <param name="provider">An object that supplies culture-specific formatting information about <paramref name="s" />. If <paramref name="provider" /> is <see langword="null" />, the thread current culture is used.</param>
|
|
/// <returns>An 8-bit signed byte value that is equivalent to the number specified in the <paramref name="s" /> parameter.</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" />.</exception>
|
|
/// <exception cref="T:System.ArgumentNullException">
|
|
/// <paramref name="s" /> is <see langword="null" />.</exception>
|
|
/// <exception cref="T:System.FormatException">
|
|
/// <paramref name="s" /> is not in a format that is compliant with <paramref name="style" />.</exception>
|
|
/// <exception cref="T:System.OverflowException">
|
|
/// <paramref name="s" /> represents a number that is less than <see cref="F:System.SByte.MinValue" /> or greater than <see cref="F:System.SByte.MaxValue" />.
|
|
/// -or-
|
|
/// <paramref name="s" /> includes non-zero, fractional digits.</exception>
|
|
// Token: 0x06000B79 RID: 2937 RVA: 0x00009EB8 File Offset: 0x000080B8
|
|
[Token(Token = "0x6000B79")]
|
|
[Address(RVA = "0x299B160", Offset = "0x2999F60", VA = "0x18299B160")]
|
|
[CLSCompliant(false)]
|
|
public static sbyte Parse(string s, NumberStyles style, IFormatProvider provider)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
// Token: 0x06000B7A RID: 2938 RVA: 0x00009ED0 File Offset: 0x000080D0
|
|
[Token(Token = "0x6000B7A")]
|
|
[Address(RVA = "0x299B1E0", Offset = "0x2999FE0", VA = "0x18299B1E0")]
|
|
private static sbyte Parse(string s, NumberStyles style, NumberFormatInfo info)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
/// <summary>Tries to convert the string representation of a number in a specified style and culture-specific format to its <see cref="T:System.SByte" /> equivalent, and returns a value that indicates whether the conversion succeeded.</summary>
|
|
/// <param name="s">A string representing a number to convert.</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 8-bit signed 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.SByte.MinValue" /> or greater than <see cref="F:System.SByte.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: 0x06000B7B RID: 2939 RVA: 0x00009EE8 File Offset: 0x000080E8
|
|
[Token(Token = "0x6000B7B")]
|
|
[Address(RVA = "0x299BAD0", Offset = "0x299A8D0", VA = "0x18299BAD0")]
|
|
[CLSCompliant(false)]
|
|
public static bool TryParse(string s, NumberStyles style, IFormatProvider provider, out sbyte result)
|
|
{
|
|
return default(bool);
|
|
}
|
|
|
|
// Token: 0x06000B7C RID: 2940 RVA: 0x00009F00 File Offset: 0x00008100
|
|
[Token(Token = "0x6000B7C")]
|
|
[Address(RVA = "0x299BA50", Offset = "0x299A850", VA = "0x18299BA50")]
|
|
private static bool TryParse(string s, NumberStyles style, NumberFormatInfo info, out sbyte result)
|
|
{
|
|
return default(bool);
|
|
}
|
|
|
|
/// <summary>Returns the <see cref="T:System.TypeCode" /> for value type <see cref="T:System.SByte" />.</summary>
|
|
/// <returns>The enumerated constant, <see cref="F:System.TypeCode.SByte" />.</returns>
|
|
// Token: 0x06000B7D RID: 2941 RVA: 0x00009F18 File Offset: 0x00008118
|
|
[Token(Token = "0x6000B7D")]
|
|
[Address(RVA = "0x46C990", Offset = "0x46B790", VA = "0x18046C990", 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 unused.</param>
|
|
/// <returns>
|
|
/// <see langword="true" /> if the value of the current instance is not zero; otherwise, <see langword="false" />.</returns>
|
|
// Token: 0x06000B7E RID: 2942 RVA: 0x00009F30 File Offset: 0x00008130
|
|
[Token(Token = "0x6000B7E")]
|
|
[Address(RVA = "0x299B330", Offset = "0x299A130", VA = "0x18299B330", 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: 0x06000B7F RID: 2943 RVA: 0x00009F48 File Offset: 0x00008148
|
|
[Token(Token = "0x6000B7F")]
|
|
[Address(RVA = "0x299B3F0", Offset = "0x299A1F0", VA = "0x18299B3F0", 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, unchanged.</returns>
|
|
// Token: 0x06000B80 RID: 2944 RVA: 0x00009F60 File Offset: 0x00008160
|
|
[Token(Token = "0x6000B80")]
|
|
[Address(RVA = "0x60EA40", Offset = "0x60D840", VA = "0x18060EA40", 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 unused.</param>
|
|
/// <returns>The value of the current instance, converted to a <see cref="T:System.Byte" />.</returns>
|
|
// Token: 0x06000B81 RID: 2945 RVA: 0x00009F78 File Offset: 0x00008178
|
|
[Token(Token = "0x6000B81")]
|
|
[Address(RVA = "0x299B390", Offset = "0x299A190", VA = "0x18299B390", 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: 0x06000B82 RID: 2946 RVA: 0x00009F90 File Offset: 0x00008190
|
|
[Token(Token = "0x6000B82")]
|
|
[Address(RVA = "0x299B5F0", Offset = "0x299A3F0", VA = "0x18299B5F0", 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: 0x06000B83 RID: 2947 RVA: 0x00009FA8 File Offset: 0x000081A8
|
|
[Token(Token = "0x6000B83")]
|
|
[Address(RVA = "0x299B7B0", Offset = "0x299A5B0", VA = "0x18299B7B0", 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: 0x06000B84 RID: 2948 RVA: 0x00009FC0 File Offset: 0x000081C0
|
|
[Token(Token = "0x6000B84")]
|
|
[Address(RVA = "0x299B650", Offset = "0x299A450", VA = "0x18299B650", 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: 0x06000B85 RID: 2949 RVA: 0x00009FD8 File Offset: 0x000081D8
|
|
[Token(Token = "0x6000B85")]
|
|
[Address(RVA = "0x299B810", Offset = "0x299A610", VA = "0x18299B810", 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: 0x06000B86 RID: 2950 RVA: 0x00009FF0 File Offset: 0x000081F0
|
|
[Token(Token = "0x6000B86")]
|
|
[Address(RVA = "0x299B660", Offset = "0x299A460", VA = "0x18299B660", 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: 0x06000B87 RID: 2951 RVA: 0x0000A008 File Offset: 0x00008208
|
|
[Token(Token = "0x6000B87")]
|
|
[Address(RVA = "0x299B870", Offset = "0x299A670", VA = "0x18299B870", 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: 0x06000B88 RID: 2952 RVA: 0x0000A020 File Offset: 0x00008220
|
|
[Token(Token = "0x6000B88")]
|
|
[Address(RVA = "0x299B6C0", Offset = "0x299A4C0", VA = "0x18299B6C0", 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: 0x06000B89 RID: 2953 RVA: 0x0000A038 File Offset: 0x00008238
|
|
[Token(Token = "0x6000B89")]
|
|
[Address(RVA = "0x299B590", Offset = "0x299A390", VA = "0x18299B590", 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 unused.</param>
|
|
/// <returns>The value of the current instance, converted to a <see cref="T:System.Decimal" />.</returns>
|
|
// Token: 0x06000B8A RID: 2954 RVA: 0x0000A050 File Offset: 0x00008250
|
|
[Token(Token = "0x6000B8A")]
|
|
[Address(RVA = "0x299B520", Offset = "0x299A320", VA = "0x18299B520", Slot = "19")]
|
|
decimal IConvertible.ToDecimal(IFormatProvider provider)
|
|
{
|
|
return 0m;
|
|
}
|
|
|
|
/// <summary>This conversion is not supported. Attempting to do so throws an <see cref="T:System.InvalidCastException" />.</summary>
|
|
/// <param name="provider">This parameter is ignored.</param>
|
|
/// <returns>None. This conversion is not supported.</returns>
|
|
/// <exception cref="T:System.InvalidCastException">In all cases.</exception>
|
|
// Token: 0x06000B8B RID: 2955 RVA: 0x0000A068 File Offset: 0x00008268
|
|
[Token(Token = "0x6000B8B")]
|
|
[Address(RVA = "0x299B450", Offset = "0x299A250", VA = "0x18299B450", 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 <see cref="T:System.Type" /> to which to convert this <see cref="T:System.SByte" /> value.</param>
|
|
/// <param name="provider">A <see cref="T:System.IFormatProvider" /> implementation that provides information about the format of the returned value.</param>
|
|
/// <returns>The value of the current instance, converted to an object of type <paramref name="type" />.</returns>
|
|
// Token: 0x06000B8C RID: 2956 RVA: 0x00002082 File Offset: 0x00000282
|
|
[Token(Token = "0x6000B8C")]
|
|
[Address(RVA = "0x299B720", Offset = "0x299A520", VA = "0x18299B720", Slot = "22")]
|
|
object IConvertible.ToType(Type type, IFormatProvider provider)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
// Token: 0x040004A8 RID: 1192
|
|
[global::Cpp2IlInjected.FieldOffset(Offset = "0x0")]
|
|
[Token(Token = "0x40004A8")]
|
|
private sbyte m_value;
|
|
|
|
/// <summary>Represents the largest possible value of <see cref="T:System.SByte" />. This field is constant.</summary>
|
|
// Token: 0x040004A9 RID: 1193
|
|
[Token(Token = "0x40004A9")]
|
|
public const sbyte MaxValue = 127;
|
|
|
|
/// <summary>Represents the smallest possible value of <see cref="T:System.SByte" />. This field is constant.</summary>
|
|
// Token: 0x040004AA RID: 1194
|
|
[Token(Token = "0x40004AA")]
|
|
public const sbyte MinValue = -128;
|
|
}
|
|
}
|