Files
2026-04-10 22:50:51 +02:00

442 lines
24 KiB
C#

using System;
using System.Globalization;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System
{
/// <summary>Represents a 32-bit unsigned integer.</summary>
// Token: 0x02000153 RID: 339
[Token(Token = "0x2000153")]
[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: 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;
}
/// <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: 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;
}
/// <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: 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);
}
/// <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: 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);
}
/// <summary>Returns the hash code for this instance.</summary>
/// <returns>A 32-bit signed integer hash code.</returns>
// 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;
}
/// <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: 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;
}
/// <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: 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;
}
/// <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: 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;
}
/// <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: 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;
}
/// <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: 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;
}
/// <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: 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;
}
/// <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: 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;
}
/// <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: 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);
}
/// <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: 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);
}
/// <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: 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;
}
/// <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: 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);
}
/// <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: 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';
}
/// <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: 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;
}
/// <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: 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;
}
/// <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: 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;
}
/// <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: 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;
}
/// <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: 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;
}
/// <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: 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;
}
/// <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: 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;
}
/// <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: 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;
}
/// <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: 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;
}
/// <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: 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;
}
/// <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: 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;
}
/// <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: 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);
}
/// <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: 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;
/// <summary>Represents the largest possible value of <see cref="T:System.UInt32" />. This field is constant.</summary>
// Token: 0x04000574 RID: 1396
[Token(Token = "0x4000574")]
public const uint MaxValue = 4294967295U;
/// <summary>Represents the smallest possible value of <see cref="T:System.UInt32" />. This field is constant.</summary>
// Token: 0x04000575 RID: 1397
[Token(Token = "0x4000575")]
public const uint MinValue = 0U;
}
}