using System;
using System.Globalization;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System
{
/// Represents a 32-bit unsigned integer.
// Token: 0x02000153 RID: 339
[Token(Token = "0x2000153")]
[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: 0x06000E07 RID: 3591 RVA: 0x0000BDA8 File Offset: 0x00009FA8
[Token(Token = "0x6000E07")]
[Address(RVA = "0x32863D0", Offset = "0x32851D0", VA = "0x1832863D0", 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: 0x06000E08 RID: 3592 RVA: 0x0000BDC0 File Offset: 0x00009FC0
[Token(Token = "0x6000E08")]
[Address(RVA = "0x32864B0", Offset = "0x32852B0", VA = "0x1832864B0", 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: 0x06000E09 RID: 3593 RVA: 0x0000BDD8 File Offset: 0x00009FD8
[Token(Token = "0x6000E09")]
[Address(RVA = "0x32864D0", Offset = "0x32852D0", VA = "0x1832864D0", 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: 0x06000E0A RID: 3594 RVA: 0x0000BDF0 File Offset: 0x00009FF0
[Token(Token = "0x6000E0A")]
[Address(RVA = "0x69AF70", Offset = "0x699D70", VA = "0x18069AF70", 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: 0x06000E0B RID: 3595 RVA: 0x0000BE08 File Offset: 0x0000A008
[Token(Token = "0x6000E0B")]
[Address(RVA = "0x57C620", Offset = "0x57B420", VA = "0x18057C620", 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: 0x06000E0C RID: 3596 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6000E0C")]
[Address(RVA = "0x3286C60", Offset = "0x3285A60", VA = "0x183286C60", 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: 0x06000E0D RID: 3597 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6000E0D")]
[Address(RVA = "0x3286C90", Offset = "0x3285A90", VA = "0x183286C90", 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: 0x06000E0E RID: 3598 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6000E0E")]
[Address(RVA = "0x3286C30", Offset = "0x3285A30", VA = "0x183286C30")]
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: 0x06000E0F RID: 3599 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6000E0F")]
[Address(RVA = "0x3286BF0", Offset = "0x32859F0", VA = "0x183286BF0", 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: 0x06000E10 RID: 3600 RVA: 0x0000BE20 File Offset: 0x0000A020
[Token(Token = "0x6000E10")]
[Address(RVA = "0x3286550", Offset = "0x3285350", VA = "0x183286550")]
[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: 0x06000E11 RID: 3601 RVA: 0x0000BE38 File Offset: 0x0000A038
[Token(Token = "0x6000E11")]
[Address(RVA = "0x3286580", Offset = "0x3285380", VA = "0x183286580")]
[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: 0x06000E12 RID: 3602 RVA: 0x0000BE50 File Offset: 0x0000A050
[Token(Token = "0x6000E12")]
[Address(RVA = "0x32865B0", Offset = "0x32853B0", VA = "0x1832865B0")]
[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: 0x06000E13 RID: 3603 RVA: 0x0000BE68 File Offset: 0x0000A068
[Token(Token = "0x6000E13")]
[Address(RVA = "0x3286CC0", Offset = "0x3285AC0", VA = "0x183286CC0")]
[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: 0x06000E14 RID: 3604 RVA: 0x0000BE80 File Offset: 0x0000A080
[Token(Token = "0x6000E14")]
[Address(RVA = "0x3286D00", Offset = "0x3285B00", VA = "0x183286D00")]
[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: 0x06000E15 RID: 3605 RVA: 0x0000BE98 File Offset: 0x0000A098
[Token(Token = "0x6000E15")]
[Address(RVA = "0x466B10", Offset = "0x465910", VA = "0x180466B10", 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: 0x06000E16 RID: 3606 RVA: 0x0000BEB0 File Offset: 0x0000A0B0
[Token(Token = "0x6000E16")]
[Address(RVA = "0x3286600", Offset = "0x3285400", VA = "0x183286600", 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: 0x06000E17 RID: 3607 RVA: 0x0000BEC8 File Offset: 0x0000A0C8
[Token(Token = "0x6000E17")]
[Address(RVA = "0x32866C0", Offset = "0x32854C0", VA = "0x1832866C0", 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: 0x06000E18 RID: 3608 RVA: 0x0000BEE0 File Offset: 0x0000A0E0
[Token(Token = "0x6000E18")]
[Address(RVA = "0x32869E0", Offset = "0x32857E0", VA = "0x1832869E0", 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: 0x06000E19 RID: 3609 RVA: 0x0000BEF8 File Offset: 0x0000A0F8
[Token(Token = "0x6000E19")]
[Address(RVA = "0x3286660", Offset = "0x3285460", VA = "0x183286660", 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: 0x06000E1A RID: 3610 RVA: 0x0000BF10 File Offset: 0x0000A110
[Token(Token = "0x6000E1A")]
[Address(RVA = "0x32868C0", Offset = "0x32856C0", VA = "0x1832868C0", 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: 0x06000E1B RID: 3611 RVA: 0x0000BF28 File Offset: 0x0000A128
[Token(Token = "0x6000E1B")]
[Address(RVA = "0x3286B30", Offset = "0x3285930", VA = "0x183286B30", 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: 0x06000E1C RID: 3612 RVA: 0x0000BF40 File Offset: 0x0000A140
[Token(Token = "0x6000E1C")]
[Address(RVA = "0x3286920", Offset = "0x3285720", VA = "0x183286920", 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: 0x06000E1D RID: 3613 RVA: 0x0000BF58 File Offset: 0x0000A158
[Token(Token = "0x6000E1D")]
[Address(RVA = "0x57C620", Offset = "0x57B420", VA = "0x18057C620", 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: 0x06000E1E RID: 3614 RVA: 0x0000BF70 File Offset: 0x0000A170
[Token(Token = "0x6000E1E")]
[Address(RVA = "0x3286980", Offset = "0x3285780", VA = "0x183286980", 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: 0x06000E1F RID: 3615 RVA: 0x0000BF88 File Offset: 0x0000A188
[Token(Token = "0x6000E1F")]
[Address(RVA = "0x3286B90", Offset = "0x3285990", VA = "0x183286B90", 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: 0x06000E20 RID: 3616 RVA: 0x0000BFA0 File Offset: 0x0000A1A0
[Token(Token = "0x6000E20")]
[Address(RVA = "0x3286A40", Offset = "0x3285840", VA = "0x183286A40", 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: 0x06000E21 RID: 3617 RVA: 0x0000BFB8 File Offset: 0x0000A1B8
[Token(Token = "0x6000E21")]
[Address(RVA = "0x3286860", Offset = "0x3285660", VA = "0x183286860", 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: 0x06000E22 RID: 3618 RVA: 0x0000BFD0 File Offset: 0x0000A1D0
[Token(Token = "0x6000E22")]
[Address(RVA = "0x32867F0", Offset = "0x32855F0", VA = "0x1832867F0", 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: 0x06000E23 RID: 3619 RVA: 0x0000BFE8 File Offset: 0x0000A1E8
[Token(Token = "0x6000E23")]
[Address(RVA = "0x3286720", Offset = "0x3285520", VA = "0x183286720", 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: 0x06000E24 RID: 3620 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6000E24")]
[Address(RVA = "0x3286AA0", Offset = "0x32858A0", VA = "0x183286AA0", Slot = "22")]
object IConvertible.ToType(Type type, IFormatProvider provider)
{
return null;
}
// Token: 0x04000573 RID: 1395
[global::Cpp2IlInjected.FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000573")]
private uint m_value;
/// Represents the largest possible value of . This field is constant.
// Token: 0x04000574 RID: 1396
[Token(Token = "0x4000574")]
public const uint MaxValue = 4294967295U;
/// Represents the smallest possible value of . This field is constant.
// Token: 0x04000575 RID: 1397
[Token(Token = "0x4000575")]
public const uint MinValue = 0U;
}
}