m
This commit is contained in:
@@ -0,0 +1,441 @@
|
||||
using System;
|
||||
using System.Globalization;
|
||||
using System.Runtime.InteropServices;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System
|
||||
{
|
||||
/// <summary>Represents a 32-bit unsigned integer.</summary>
|
||||
// Token: 0x0200015A RID: 346
|
||||
[Token(Token = "0x200015A")]
|
||||
[CLSCompliant(false)]
|
||||
[ComVisible(true)]
|
||||
[Serializable]
|
||||
public struct UInt32 : IComparable, IFormattable, IConvertible, IComparable<uint>, IEquatable<uint>
|
||||
{
|
||||
/// <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.UInt32" />.</exception>
|
||||
// Token: 0x06000E3B RID: 3643 RVA: 0x0000C090 File Offset: 0x0000A290
|
||||
[Token(Token = "0x6000E3B")]
|
||||
[Address(RVA = "0xF84950", Offset = "0xF83950", VA = "0x180F84950", Slot = "4")]
|
||||
public int CompareTo(object value)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
/// <summary>Compares this instance to a specified 32-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: 0x06000E3C RID: 3644 RVA: 0x0000C0A8 File Offset: 0x0000A2A8
|
||||
[Token(Token = "0x6000E3C")]
|
||||
[Address(RVA = "0xF84A30", Offset = "0xF83A30", VA = "0x180F84A30", Slot = "23")]
|
||||
public int CompareTo(uint 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.UInt32" /> and equals the value of this instance; otherwise, <see langword="false" />.</returns>
|
||||
// Token: 0x06000E3D RID: 3645 RVA: 0x0000C0C0 File Offset: 0x0000A2C0
|
||||
[Token(Token = "0x6000E3D")]
|
||||
[Address(RVA = "0xF84A50", Offset = "0xF83A50", VA = "0x180F84A50", 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.UInt32" />.</summary>
|
||||
/// <param name="obj">A 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: 0x06000E3E RID: 3646 RVA: 0x0000C0D8 File Offset: 0x0000A2D8
|
||||
[Token(Token = "0x6000E3E")]
|
||||
[Address(RVA = "0x592F20", Offset = "0x591F20", VA = "0x180592F20", Slot = "24")]
|
||||
public bool Equals(uint obj)
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
/// <summary>Returns the hash code for this instance.</summary>
|
||||
/// <returns>A 32-bit signed integer hash code.</returns>
|
||||
// Token: 0x06000E3F RID: 3647 RVA: 0x0000C0F0 File Offset: 0x0000A2F0
|
||||
[Token(Token = "0x6000E3F")]
|
||||
[Address(RVA = "0x5C1530", Offset = "0x5C0530", VA = "0x1805C1530", 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: 0x06000E40 RID: 3648 RVA: 0x00002082 File Offset: 0x00000282
|
||||
[Token(Token = "0x6000E40")]
|
||||
[Address(RVA = "0xF851E0", Offset = "0xF841E0", VA = "0x180F851E0", 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, which consists of a sequence of digits ranging from 0 to 9, without a sign or leading zeros.</returns>
|
||||
// Token: 0x06000E41 RID: 3649 RVA: 0x00002082 File Offset: 0x00000282
|
||||
[Token(Token = "0x6000E41")]
|
||||
[Address(RVA = "0xF85210", Offset = "0xF84210", VA = "0x180F85210", 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: 0x06000E42 RID: 3650 RVA: 0x00002082 File Offset: 0x00000282
|
||||
[Token(Token = "0x6000E42")]
|
||||
[Address(RVA = "0xF851B0", Offset = "0xF841B0", VA = "0x180F851B0")]
|
||||
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: 0x06000E43 RID: 3651 RVA: 0x00002082 File Offset: 0x00000282
|
||||
[Token(Token = "0x6000E43")]
|
||||
[Address(RVA = "0xF85170", Offset = "0xF84170", VA = "0x180F85170", Slot = "5")]
|
||||
public string ToString(string format, IFormatProvider provider)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
/// <summary>Converts the string representation of a number to its 32-bit unsigned integer equivalent.</summary>
|
||||
/// <param name="s">A string representing the number to convert.</param>
|
||||
/// <returns>A 32-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 of the correct format.</exception>
|
||||
/// <exception cref="T:System.OverflowException">The <paramref name="s" /> parameter represents a number that is less than <see cref="F:System.UInt32.MinValue" /> or greater than <see cref="F:System.UInt32.MaxValue" />.</exception>
|
||||
// Token: 0x06000E44 RID: 3652 RVA: 0x0000C108 File Offset: 0x0000A308
|
||||
[Token(Token = "0x6000E44")]
|
||||
[Address(RVA = "0xF84AD0", Offset = "0xF83AD0", VA = "0x180F84AD0")]
|
||||
[CLSCompliant(false)]
|
||||
public static uint Parse(string s)
|
||||
{
|
||||
return 0U;
|
||||
}
|
||||
|
||||
/// <summary>Converts the string representation of a number in a specified culture-specific format to its 32-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 32-bit unsigned 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 in the correct style.</exception>
|
||||
/// <exception cref="T:System.OverflowException">
|
||||
/// <paramref name="s" /> represents a number that is less than <see cref="F:System.UInt32.MinValue" /> or greater than <see cref="F:System.UInt32.MaxValue" />.</exception>
|
||||
// Token: 0x06000E45 RID: 3653 RVA: 0x0000C120 File Offset: 0x0000A320
|
||||
[Token(Token = "0x6000E45")]
|
||||
[Address(RVA = "0xF84B00", Offset = "0xF83B00", VA = "0x180F84B00")]
|
||||
[CLSCompliant(false)]
|
||||
public static uint Parse(string s, IFormatProvider provider)
|
||||
{
|
||||
return 0U;
|
||||
}
|
||||
|
||||
/// <summary>Converts the string representation of a number in a specified style and culture-specific format to its 32-bit unsigned integer equivalent.</summary>
|
||||
/// <param name="s">A string representing 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 32-bit unsigned 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 that is less than <see cref="F:System.UInt32.MinValue" /> or greater than <see cref="F:System.UInt32.MaxValue" />.
|
||||
/// -or-
|
||||
/// <paramref name="s" /> includes non-zero, fractional digits.</exception>
|
||||
// Token: 0x06000E46 RID: 3654 RVA: 0x0000C138 File Offset: 0x0000A338
|
||||
[Token(Token = "0x6000E46")]
|
||||
[Address(RVA = "0xF84B30", Offset = "0xF83B30", VA = "0x180F84B30")]
|
||||
[CLSCompliant(false)]
|
||||
public static uint Parse(string s, NumberStyles style, IFormatProvider provider)
|
||||
{
|
||||
return 0U;
|
||||
}
|
||||
|
||||
/// <summary>Tries to convert the string representation of a number to its 32-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 32-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 that is less than <see cref="F:System.UInt32.MinValue" /> or greater than <see cref="F:System.UInt32.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: 0x06000E47 RID: 3655 RVA: 0x0000C150 File Offset: 0x0000A350
|
||||
[Token(Token = "0x6000E47")]
|
||||
[Address(RVA = "0xF85240", Offset = "0xF84240", VA = "0x180F85240")]
|
||||
[CLSCompliant(false)]
|
||||
public static bool TryParse(string s, out uint result)
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
/// <summary>Tries to convert the string representation of a number in a specified style and culture-specific format to its 32-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 32-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 that is less than <see cref="F:System.UInt32.MinValue" /> or greater than <see cref="F:System.UInt32.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: 0x06000E48 RID: 3656 RVA: 0x0000C168 File Offset: 0x0000A368
|
||||
[Token(Token = "0x6000E48")]
|
||||
[Address(RVA = "0xF85280", Offset = "0xF84280", VA = "0x180F85280")]
|
||||
[CLSCompliant(false)]
|
||||
public static bool TryParse(string s, NumberStyles style, IFormatProvider provider, out uint result)
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
/// <summary>Returns the <see cref="T:System.TypeCode" /> for value type <see cref="T:System.UInt32" />.</summary>
|
||||
/// <returns>The enumerated constant, <see cref="F:System.TypeCode.UInt32" />.</returns>
|
||||
// Token: 0x06000E49 RID: 3657 RVA: 0x0000C180 File Offset: 0x0000A380
|
||||
[Token(Token = "0x6000E49")]
|
||||
[Address(RVA = "0x7CCD10", Offset = "0x7CBD10", VA = "0x1807CCD10", 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: 0x06000E4A RID: 3658 RVA: 0x0000C198 File Offset: 0x0000A398
|
||||
[Token(Token = "0x6000E4A")]
|
||||
[Address(RVA = "0xF84B80", Offset = "0xF83B80", VA = "0x180F84B80", 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: 0x06000E4B RID: 3659 RVA: 0x0000C1B0 File Offset: 0x0000A3B0
|
||||
[Token(Token = "0x6000E4B")]
|
||||
[Address(RVA = "0xF84C40", Offset = "0xF83C40", VA = "0x180F84C40", 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: 0x06000E4C RID: 3660 RVA: 0x0000C1C8 File Offset: 0x0000A3C8
|
||||
[Token(Token = "0x6000E4C")]
|
||||
[Address(RVA = "0xF84F60", Offset = "0xF83F60", VA = "0x180F84F60", 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: 0x06000E4D RID: 3661 RVA: 0x0000C1E0 File Offset: 0x0000A3E0
|
||||
[Token(Token = "0x6000E4D")]
|
||||
[Address(RVA = "0xF84BE0", Offset = "0xF83BE0", VA = "0x180F84BE0", 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: 0x06000E4E RID: 3662 RVA: 0x0000C1F8 File Offset: 0x0000A3F8
|
||||
[Token(Token = "0x6000E4E")]
|
||||
[Address(RVA = "0xF84E40", Offset = "0xF83E40", VA = "0x180F84E40", 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: 0x06000E4F RID: 3663 RVA: 0x0000C210 File Offset: 0x0000A410
|
||||
[Token(Token = "0x6000E4F")]
|
||||
[Address(RVA = "0xF850B0", Offset = "0xF840B0", VA = "0x180F850B0", 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: 0x06000E50 RID: 3664 RVA: 0x0000C228 File Offset: 0x0000A428
|
||||
[Token(Token = "0x6000E50")]
|
||||
[Address(RVA = "0xF84EA0", Offset = "0xF83EA0", VA = "0x180F84EA0", 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, unchanged.</returns>
|
||||
// Token: 0x06000E51 RID: 3665 RVA: 0x0000C240 File Offset: 0x0000A440
|
||||
[Token(Token = "0x6000E51")]
|
||||
[Address(RVA = "0x5C1530", Offset = "0x5C0530", VA = "0x1805C1530", 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: 0x06000E52 RID: 3666 RVA: 0x0000C258 File Offset: 0x0000A458
|
||||
[Token(Token = "0x6000E52")]
|
||||
[Address(RVA = "0xF84F00", Offset = "0xF83F00", VA = "0x180F84F00", 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: 0x06000E53 RID: 3667 RVA: 0x0000C270 File Offset: 0x0000A470
|
||||
[Token(Token = "0x6000E53")]
|
||||
[Address(RVA = "0xF85110", Offset = "0xF84110", VA = "0x180F85110", 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: 0x06000E54 RID: 3668 RVA: 0x0000C288 File Offset: 0x0000A488
|
||||
[Token(Token = "0x6000E54")]
|
||||
[Address(RVA = "0xF84FC0", Offset = "0xF83FC0", VA = "0x180F84FC0", 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: 0x06000E55 RID: 3669 RVA: 0x0000C2A0 File Offset: 0x0000A4A0
|
||||
[Token(Token = "0x6000E55")]
|
||||
[Address(RVA = "0xF84DE0", Offset = "0xF83DE0", VA = "0x180F84DE0", 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: 0x06000E56 RID: 3670 RVA: 0x0000C2B8 File Offset: 0x0000A4B8
|
||||
[Token(Token = "0x6000E56")]
|
||||
[Address(RVA = "0xF84D70", Offset = "0xF83D70", VA = "0x180F84D70", 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: 0x06000E57 RID: 3671 RVA: 0x0000C2D0 File Offset: 0x0000A4D0
|
||||
[Token(Token = "0x6000E57")]
|
||||
[Address(RVA = "0xF84CA0", Offset = "0xF83CA0", VA = "0x180F84CA0", 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.UInt32" /> value.</param>
|
||||
/// <param name="provider">An <see cref="T:System.IFormatProvider" /> implementation that supplies culture-specific information about the format of the returned value.</param>
|
||||
/// <returns>The value of the current instance, converted to <paramref name="type" />.</returns>
|
||||
// Token: 0x06000E58 RID: 3672 RVA: 0x00002082 File Offset: 0x00000282
|
||||
[Token(Token = "0x6000E58")]
|
||||
[Address(RVA = "0xF85020", Offset = "0xF84020", VA = "0x180F85020", Slot = "22")]
|
||||
object IConvertible.ToType(Type type, IFormatProvider provider)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x0400057D RID: 1405
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x0")]
|
||||
[Token(Token = "0x400057D")]
|
||||
private uint m_value;
|
||||
|
||||
/// <summary>Represents the largest possible value of <see cref="T:System.UInt32" />. This field is constant.</summary>
|
||||
// Token: 0x0400057E RID: 1406
|
||||
[Token(Token = "0x400057E")]
|
||||
public const uint MaxValue = 4294967295U;
|
||||
|
||||
/// <summary>Represents the smallest possible value of <see cref="T:System.UInt32" />. This field is constant.</summary>
|
||||
// Token: 0x0400057F RID: 1407
|
||||
[Token(Token = "0x400057F")]
|
||||
public const uint MinValue = 0U;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user