using System;
using System.Globalization;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System
{
/// Represents a 32-bit unsigned integer.
// Token: 0x0200015A RID: 346
[Token(Token = "0x200015A")]
[CLSCompliant(false)]
[ComVisible(true)]
[Serializable]
public struct UInt32 : IComparable, IFormattable, IConvertible, IComparable, IEquatable
{
/// Compares this instance to a specified object and returns an indication of their relative values.
/// An object to compare, or .
/// A signed number indicating the relative values of this instance and .
/// Return Value
///
/// Description
///
/// Less than zero
///
/// This instance is less than .
///
/// Zero
///
/// This instance is equal to .
///
/// Greater than zero
///
/// This instance is greater than .
///
/// -or-
///
/// is .
///
/// is not a .
// 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;
}
/// Compares this instance to a specified 32-bit unsigned integer and returns an indication of their relative values.
/// An unsigned integer to compare.
/// A signed number indicating the relative values of this instance and .
/// Return value
///
/// Description
///
/// Less than zero
///
/// This instance is less than .
///
/// Zero
///
/// This instance is equal to .
///
/// Greater than zero
///
/// This instance is greater than .
// 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;
}
/// Returns a value indicating whether this instance is equal to a specified object.
/// An object to compare with this instance.
///
/// if is an instance of and equals the value of this instance; otherwise, .
// 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);
}
/// Returns a value indicating whether this instance is equal to a specified .
/// A value to compare to this instance.
///
/// if has the same value as this instance; otherwise, .
// 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);
}
/// Returns the hash code for this instance.
/// A 32-bit signed integer hash code.
// 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;
}
/// Converts the numeric value of this instance to its equivalent string representation.
/// 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.
// 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;
}
/// Converts the numeric value of this instance to its equivalent string representation using the specified culture-specific format information.
/// An object that supplies culture-specific formatting information.
/// 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.
// 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;
}
/// Converts the numeric value of this instance to its equivalent string representation using the specified format.
/// A numeric format string.
/// The string representation of the value of this instance as specified by .
/// The parameter is invalid.
// 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;
}
/// Converts the numeric value of this instance to its equivalent string representation using the specified format and culture-specific format information.
/// A numeric format string.
/// An object that supplies culture-specific formatting information about this instance.
/// The string representation of the value of this instance as specified by and .
/// The parameter is invalid.
// 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;
}
/// Converts the string representation of a number to its 32-bit unsigned integer equivalent.
/// A string representing the number to convert.
/// A 32-bit unsigned integer equivalent to the number contained in .
/// The parameter is .
/// The parameter is not of the correct format.
/// The parameter represents a number that is less than or greater than .
// 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;
}
/// Converts the string representation of a number in a specified culture-specific format to its 32-bit unsigned integer equivalent.
/// A string that represents the number to convert.
/// An object that supplies culture-specific formatting information about .
/// A 32-bit unsigned integer equivalent to the number specified in .
///
/// is .
///
/// is not in the correct style.
///
/// represents a number that is less than or greater than .
// 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;
}
/// Converts the string representation of a number in a specified style and culture-specific format to its 32-bit unsigned integer equivalent.
/// A string representing the number to convert. The string is interpreted by using the style specified by the parameter.
/// A bitwise combination of enumeration values that indicates the style elements that can be present in . A typical value to specify is .
/// An object that supplies culture-specific formatting information about .
/// A 32-bit unsigned integer equivalent to the number specified in .
///
/// is .
///
/// is not a value.
/// -or-
/// is not a combination of and values.
///
/// is not in a format compliant with .
///
/// represents a number that is less than or greater than .
/// -or-
/// includes non-zero, fractional digits.
// 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;
}
/// 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.
/// A string that represents the number to convert.
/// When this method returns, contains the 32-bit unsigned integer value that is equivalent to the number contained in , if the conversion succeeded, or zero if the conversion failed. The conversion fails if the parameter is or , is not of the correct format, or represents a number that is less than or greater than . This parameter is passed uninitialized; any value originally supplied in will be overwritten.
///
/// if was converted successfully; otherwise, .
// 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);
}
/// 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.
/// A string that represents the number to convert. The string is interpreted by using the style specified by the parameter.
/// A bitwise combination of enumeration values that indicates the permitted format of . A typical value to specify is .
/// An object that supplies culture-specific formatting information about .
/// When this method returns, contains the 32-bit unsigned integer value equivalent to the number contained in , if the conversion succeeded, or zero if the conversion failed. The conversion fails if the parameter is or , is not in a format compliant with , or represents a number that is less than or greater than . This parameter is passed uninitialized; any value originally supplied in will be overwritten.
///
/// if was converted successfully; otherwise, .
///
/// is not a value.
/// -or-
/// is not a combination of and values.
// 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);
}
/// Returns the for value type .
/// The enumerated constant, .
// 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;
}
/// For a description of this member, see .
/// This parameter is ignored.
///
/// if the value of the current instance is not zero; otherwise, .
// 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);
}
/// For a description of this member, see .
/// This parameter is ignored.
/// The value of the current instance, converted to a .
// 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';
}
/// For a description of this member, see .
/// This parameter is ignored.
/// The value of the current instance, converted to an .
// 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;
}
/// For a description of this member, see .
/// This parameter is ignored.
/// The value of the current instance, converted to a .
// 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;
}
/// For a description of this member, see .
/// This parameter is ignored.
/// The value of the current instance, converted to an .
// 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;
}
/// For a description of this member, see .
/// This parameter is ignored.
/// The value of the current instance, converted to a .
// 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;
}
/// For a description of this member, see .
/// This parameter is ignored.
/// The value of the current instance, converted to an .
// 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;
}
/// For a description of this member, see .
/// This parameter is ignored.
/// The value of the current instance, unchanged.
// 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;
}
/// For a description of this member, see .
/// This parameter is ignored.
/// The value of the current instance, converted to an .
// 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;
}
/// For a description of this member, see .
/// This parameter is ignored.
/// The value of the current instance, converted to a .
// 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;
}
/// For a description of this member, see .
/// This parameter is ignored.
/// The value of the current instance, converted to a .
// 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;
}
/// For a description of this member, see .
/// This parameter is ignored.
/// The value of the current instance, converted to a .
// 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;
}
/// For a description of this member, see .
/// This parameter is ignored.
/// The value of the current instance, converted to a .
// 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;
}
/// This conversion is not supported. Attempting to use this method throws an .
/// This parameter is ignored.
/// This conversion is not supported. No value is returned.
/// In all cases.
// 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);
}
/// For a description of this member, see .
/// The type to which to convert this value.
/// An implementation that supplies culture-specific information about the format of the returned value.
/// The value of the current instance, converted to .
// 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;
/// Represents the largest possible value of . This field is constant.
// Token: 0x0400057E RID: 1406
[Token(Token = "0x400057E")]
public const uint MaxValue = 4294967295U;
/// Represents the smallest possible value of . This field is constant.
// Token: 0x0400057F RID: 1407
[Token(Token = "0x400057F")]
public const uint MinValue = 0U;
}
}