Files
niko 8fc35183db a
2026-04-11 22:19:20 +02:00

443 lines
24 KiB
C#

using System;
using System.Globalization;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System
{
/// <summary>Represents an 8-bit unsigned integer.</summary>
// Token: 0x020000BE RID: 190
[Token(Token = "0x20000BE")]
[ComVisible(true)]
[Serializable]
public struct Byte : IComparable, IFormattable, IConvertible, IComparable<byte>, IEquatable<byte>
{
/// <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 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" />.
///
/// -or-
///
/// <paramref name="value" /> is <see langword="null" />.</returns>
/// <exception cref="T:System.ArgumentException">
/// <paramref name="value" /> is not a <see cref="T:System.Byte" />.</exception>
// Token: 0x0600058C RID: 1420 RVA: 0x000046F8 File Offset: 0x000028F8
[Token(Token = "0x600058C")]
[Address(RVA = "0x26CAB10", Offset = "0x26C9910", VA = "0x1826CAB10", Slot = "4")]
public int CompareTo(object value)
{
return 0;
}
/// <summary>Compares this instance to a specified 8-bit unsigned integer and returns an indication of their relative values.</summary>
/// <param name="value">An 8-bit unsigned 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: 0x0600058D RID: 1421 RVA: 0x00004710 File Offset: 0x00002910
[Token(Token = "0x600058D")]
[Address(RVA = "0x26CAB00", Offset = "0x26C9900", VA = "0x1826CAB00", Slot = "23")]
public int CompareTo(byte 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, or <see langword="null" />.</param>
/// <returns>
/// <see langword="true" /> if <paramref name="obj" /> is an instance of <see cref="T:System.Byte" /> and equals the value of this instance; otherwise, <see langword="false" />.</returns>
// Token: 0x0600058E RID: 1422 RVA: 0x00004728 File Offset: 0x00002928
[Token(Token = "0x600058E")]
[Address(RVA = "0x26CABE0", Offset = "0x26C99E0", VA = "0x1826CABE0", Slot = "0")]
public override bool Equals(object obj)
{
return default(bool);
}
/// <summary>Returns a value indicating whether this instance and a specified <see cref="T:System.Byte" /> object represent the same value.</summary>
/// <param name="obj">An object to compare to this instance.</param>
/// <returns>
/// <see langword="true" /> if <paramref name="obj" /> is equal to this instance; otherwise, <see langword="false" />.</returns>
// Token: 0x0600058F RID: 1423 RVA: 0x00004740 File Offset: 0x00002940
[Token(Token = "0x600058F")]
[Address(RVA = "0x26C9190", Offset = "0x26C7F90", VA = "0x1826C9190", Slot = "24")]
public bool Equals(byte obj)
{
return default(bool);
}
/// <summary>Returns the hash code for this instance.</summary>
/// <returns>A hash code for the current <see cref="T:System.Byte" />.</returns>
// Token: 0x06000590 RID: 1424 RVA: 0x00004758 File Offset: 0x00002958
[Token(Token = "0x6000590")]
[Address(RVA = "0x60EA40", Offset = "0x60D840", VA = "0x18060EA40", Slot = "2")]
public override int GetHashCode()
{
return 0;
}
/// <summary>Converts the string representation of a number in a specified culture-specific format to its <see cref="T:System.Byte" /> equivalent.</summary>
/// <param name="s">A string that contains 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 parsing information about <paramref name="s" />. If <paramref name="provider" /> is <see langword="null" />, the thread current culture is used.</param>
/// <returns>A byte value that is equivalent to the number contained 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 of the correct format.</exception>
/// <exception cref="T:System.OverflowException">
/// <paramref name="s" /> represents a number less than <see cref="F:System.Byte.MinValue" /> or greater than <see cref="F:System.Byte.MaxValue" />.</exception>
// Token: 0x06000591 RID: 1425 RVA: 0x00004770 File Offset: 0x00002970
[Token(Token = "0x6000591")]
[Address(RVA = "0x26CAD70", Offset = "0x26C9B70", VA = "0x1826CAD70")]
public static byte Parse(string s, IFormatProvider provider)
{
return 0;
}
/// <summary>Converts the string representation of a number in a specified style and culture-specific format to its <see cref="T:System.Byte" /> equivalent.</summary>
/// <param name="s">A string that contains a number to convert. The string is interpreted using the style specified by <paramref name="style" />.</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 information about the format of <paramref name="s" />. If <paramref name="provider" /> is <see langword="null" />, the thread current culture is used.</param>
/// <returns>A byte value that is equivalent to the number contained 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 of the correct format.</exception>
/// <exception cref="T:System.OverflowException">
/// <paramref name="s" /> represents a number less than <see cref="F:System.Byte.MinValue" /> or greater than <see cref="F:System.Byte.MaxValue" />.
/// -or-
/// <paramref name="s" /> includes non-zero, fractional digits.</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>
// Token: 0x06000592 RID: 1426 RVA: 0x00004788 File Offset: 0x00002988
[Token(Token = "0x6000592")]
[Address(RVA = "0x26CADA0", Offset = "0x26C9BA0", VA = "0x1826CADA0")]
public static byte Parse(string s, NumberStyles style, IFormatProvider provider)
{
return 0;
}
// Token: 0x06000593 RID: 1427 RVA: 0x000047A0 File Offset: 0x000029A0
[Token(Token = "0x6000593")]
[Address(RVA = "0x26CAC70", Offset = "0x26C9A70", VA = "0x1826CAC70")]
private static byte Parse(string s, NumberStyles style, NumberFormatInfo info)
{
return 0;
}
/// <summary>Tries to convert the string representation of a number to its <see cref="T:System.Byte" /> equivalent, and returns a value that indicates whether the conversion succeeded.</summary>
/// <param name="s">A string that contains a number to convert. The string is interpreted using the <see cref="F:System.Globalization.NumberStyles.Integer" /> style.</param>
/// <param name="result">When this method returns, contains the <see cref="T:System.Byte" /> value equivalent to the number contained in <paramref name="s" /> if the conversion succeeded, or zero if the conversion failed. 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: 0x06000594 RID: 1428 RVA: 0x000047B8 File Offset: 0x000029B8
[Token(Token = "0x6000594")]
[Address(RVA = "0x26CB5A0", Offset = "0x26CA3A0", VA = "0x1826CB5A0")]
public static bool TryParse(string s, out byte result)
{
return default(bool);
}
/// <summary>Converts the string representation of a number in a specified style and culture-specific format to its <see cref="T:System.Byte" /> equivalent. A return value indicates whether the conversion succeeded or failed.</summary>
/// <param name="s">A string containing a number to convert. The string is interpreted using the style specified by <paramref name="style" />.</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" />. If <paramref name="provider" /> is <see langword="null" />, the thread current culture is used.</param>
/// <param name="result">When this method returns, contains the 8-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 of the correct format, or represents a number less than <see cref="F:System.Byte.MinValue" /> or greater than <see cref="F:System.Byte.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: 0x06000595 RID: 1429 RVA: 0x000047D0 File Offset: 0x000029D0
[Token(Token = "0x6000595")]
[Address(RVA = "0x26CB4C0", Offset = "0x26CA2C0", VA = "0x1826CB4C0")]
public static bool TryParse(string s, NumberStyles style, IFormatProvider provider, out byte result)
{
return default(bool);
}
// Token: 0x06000596 RID: 1430 RVA: 0x000047E8 File Offset: 0x000029E8
[Token(Token = "0x6000596")]
[Address(RVA = "0x26CB550", Offset = "0x26CA350", VA = "0x1826CB550")]
private static bool TryParse(string s, NumberStyles style, NumberFormatInfo info, out byte result)
{
return default(bool);
}
/// <summary>Converts the value of the current <see cref="T:System.Byte" /> object to its equivalent string representation.</summary>
/// <returns>The string representation of the value of this object, which consists of a sequence of digits that range from 0 to 9 with no leading zeroes.</returns>
// Token: 0x06000597 RID: 1431 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6000597")]
[Address(RVA = "0x26CB410", Offset = "0x26CA210", VA = "0x1826CB410", Slot = "3")]
public override string ToString()
{
return null;
}
/// <summary>Converts the value of the current <see cref="T:System.Byte" /> object to its equivalent string representation using the specified format.</summary>
/// <param name="format">A numeric format string.</param>
/// <returns>The string representation of the current <see cref="T:System.Byte" /> object, formatted as specified by the <paramref name="format" /> parameter.</returns>
/// <exception cref="T:System.FormatException">
/// <paramref name="format" /> includes an unsupported specifier. Supported format specifiers are listed in the Remarks section.</exception>
// Token: 0x06000598 RID: 1432 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6000598")]
[Address(RVA = "0x26CB440", Offset = "0x26CA240", VA = "0x1826CB440")]
public string ToString(string format)
{
return null;
}
/// <summary>Converts the numeric value of the current <see cref="T:System.Byte" /> object to its equivalent string representation using the specified culture-specific formatting information.</summary>
/// <param name="provider">An object that supplies culture-specific formatting information.</param>
/// <returns>The string representation of the value of this object in the format specified by the <paramref name="provider" /> parameter.</returns>
// Token: 0x06000599 RID: 1433 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6000599")]
[Address(RVA = "0x26CB3E0", Offset = "0x26CA1E0", VA = "0x1826CB3E0", Slot = "21")]
public string ToString(IFormatProvider provider)
{
return null;
}
/// <summary>Converts the value of the current <see cref="T:System.Byte" /> object to its equivalent string representation using the specified format and culture-specific formatting 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 current <see cref="T:System.Byte" /> object, formatted as specified by the <paramref name="format" /> and <paramref name="provider" /> parameters.</returns>
/// <exception cref="T:System.FormatException">
/// <paramref name="format" /> includes an unsupported specifier. Supported format specifiers are listed in the Remarks section.</exception>
// Token: 0x0600059A RID: 1434 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x600059A")]
[Address(RVA = "0x26CB480", Offset = "0x26CA280", VA = "0x1826CB480", Slot = "5")]
public string ToString(string format, IFormatProvider provider)
{
return null;
}
/// <summary>Returns the <see cref="T:System.TypeCode" /> for value type <see cref="T:System.Byte" />.</summary>
/// <returns>The enumerated constant, <see cref="F:System.TypeCode.Byte" />.</returns>
// Token: 0x0600059B RID: 1435 RVA: 0x00004800 File Offset: 0x00002A00
[Token(Token = "0x600059B")]
[Address(RVA = "0x46CC50", Offset = "0x46BA50", VA = "0x18046CC50", 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: 0x0600059C RID: 1436 RVA: 0x00004818 File Offset: 0x00002A18
[Token(Token = "0x600059C")]
[Address(RVA = "0x26CADF0", Offset = "0x26C9BF0", VA = "0x1826CADF0", 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: 0x0600059D RID: 1437 RVA: 0x00004830 File Offset: 0x00002A30
[Token(Token = "0x600059D")]
[Address(RVA = "0x26CAE50", Offset = "0x26C9C50", VA = "0x1826CAE50", 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: 0x0600059E RID: 1438 RVA: 0x00004848 File Offset: 0x00002A48
[Token(Token = "0x600059E")]
[Address(RVA = "0x26CB170", Offset = "0x26C9F70", VA = "0x1826CB170", 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, unchanged.</returns>
// Token: 0x0600059F RID: 1439 RVA: 0x00004860 File Offset: 0x00002A60
[Token(Token = "0x600059F")]
[Address(RVA = "0x60EA40", Offset = "0x60D840", VA = "0x18060EA40", 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: 0x060005A0 RID: 1440 RVA: 0x00004878 File Offset: 0x00002A78
[Token(Token = "0x60005A0")]
[Address(RVA = "0x26CB050", Offset = "0x26C9E50", VA = "0x1826CB050", 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: 0x060005A1 RID: 1441 RVA: 0x00004890 File Offset: 0x00002A90
[Token(Token = "0x60005A1")]
[Address(RVA = "0x26CB2C0", Offset = "0x26CA0C0", VA = "0x1826CB2C0", 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: 0x060005A2 RID: 1442 RVA: 0x000048A8 File Offset: 0x00002AA8
[Token(Token = "0x60005A2")]
[Address(RVA = "0x26CB0B0", Offset = "0x26C9EB0", VA = "0x1826CB0B0", 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: 0x060005A3 RID: 1443 RVA: 0x000048C0 File Offset: 0x00002AC0
[Token(Token = "0x60005A3")]
[Address(RVA = "0x26CB320", Offset = "0x26CA120", VA = "0x1826CB320", 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: 0x060005A4 RID: 1444 RVA: 0x000048D8 File Offset: 0x00002AD8
[Token(Token = "0x60005A4")]
[Address(RVA = "0x26CB110", Offset = "0x26C9F10", VA = "0x1826CB110", 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: 0x060005A5 RID: 1445 RVA: 0x000048F0 File Offset: 0x00002AF0
[Token(Token = "0x60005A5")]
[Address(RVA = "0x26CB380", Offset = "0x26CA180", VA = "0x1826CB380", 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: 0x060005A6 RID: 1446 RVA: 0x00004908 File Offset: 0x00002B08
[Token(Token = "0x60005A6")]
[Address(RVA = "0x26CB1D0", Offset = "0x26C9FD0", VA = "0x1826CB1D0", 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: 0x060005A7 RID: 1447 RVA: 0x00004920 File Offset: 0x00002B20
[Token(Token = "0x60005A7")]
[Address(RVA = "0x26CAFF0", Offset = "0x26C9DF0", VA = "0x1826CAFF0", 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: 0x060005A8 RID: 1448 RVA: 0x00004938 File Offset: 0x00002B38
[Token(Token = "0x60005A8")]
[Address(RVA = "0x26CAF80", Offset = "0x26C9D80", VA = "0x1826CAF80", 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: 0x060005A9 RID: 1449 RVA: 0x00004950 File Offset: 0x00002B50
[Token(Token = "0x60005A9")]
[Address(RVA = "0x26CAEB0", Offset = "0x26C9CB0", VA = "0x1826CAEB0", 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.Byte" /> value.</param>
/// <param name="provider">An <see cref="T:System.IFormatProvider" /> implementation that supplies information about the format of the returned value.</param>
/// <returns>The value of the current instance, converted to <paramref name="type" />.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="type" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.InvalidCastException">The requested type conversion is not supported.</exception>
// Token: 0x060005AA RID: 1450 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x60005AA")]
[Address(RVA = "0x26CB230", Offset = "0x26CA030", VA = "0x1826CB230", Slot = "22")]
object IConvertible.ToType(Type type, IFormatProvider provider)
{
return null;
}
// Token: 0x0400021C RID: 540
[global::Cpp2IlInjected.FieldOffset(Offset = "0x0")]
[Token(Token = "0x400021C")]
private byte m_value;
/// <summary>Represents the largest possible value of a <see cref="T:System.Byte" />. This field is constant.</summary>
// Token: 0x0400021D RID: 541
[Token(Token = "0x400021D")]
public const byte MaxValue = 255;
/// <summary>Represents the smallest possible value of a <see cref="T:System.Byte" />. This field is constant.</summary>
// Token: 0x0400021E RID: 542
[Token(Token = "0x400021E")]
public const byte MinValue = 0;
}
}