using System; using System.Globalization; using System.Runtime.InteropServices; using Cpp2IlInjected; namespace System { /// Represents an 8-bit unsigned integer. // Token: 0x020000C5 RID: 197 [Token(Token = "0x20000C5")] [ComVisible(true)] [Serializable] public struct Byte : 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 integer that indicates the relative order 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: 0x060005A9 RID: 1449 RVA: 0x000047E8 File Offset: 0x000029E8 [Token(Token = "0x60005A9")] [Address(RVA = "0x2D0E870", Offset = "0x2D0D870", VA = "0x182D0E870", Slot = "4")] public int CompareTo(object value) { return 0; } /// Compares this instance to a specified 8-bit unsigned integer and returns an indication of their relative values. /// An 8-bit unsigned integer to compare. /// A signed integer that indicates the relative order 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: 0x060005AA RID: 1450 RVA: 0x00004800 File Offset: 0x00002A00 [Token(Token = "0x60005AA")] [Address(RVA = "0x2D0E860", Offset = "0x2D0D860", VA = "0x182D0E860", Slot = "23")] public int CompareTo(byte value) { return 0; } /// Returns a value indicating whether this instance is equal to a specified object. /// An object to compare with this instance, or . /// /// if is an instance of and equals the value of this instance; otherwise, . // Token: 0x060005AB RID: 1451 RVA: 0x00004818 File Offset: 0x00002A18 [Token(Token = "0x60005AB")] [Address(RVA = "0x2D0E940", Offset = "0x2D0D940", VA = "0x182D0E940", Slot = "0")] public override bool Equals(object obj) { return default(bool); } /// Returns a value indicating whether this instance and a specified object represent the same value. /// An object to compare to this instance. /// /// if is equal to this instance; otherwise, . // Token: 0x060005AC RID: 1452 RVA: 0x00004830 File Offset: 0x00002A30 [Token(Token = "0x60005AC")] [Address(RVA = "0xC13250", Offset = "0xC12250", VA = "0x180C13250", Slot = "24")] public bool Equals(byte obj) { return default(bool); } /// Returns the hash code for this instance. /// A hash code for the current . // Token: 0x060005AD RID: 1453 RVA: 0x00004848 File Offset: 0x00002A48 [Token(Token = "0x60005AD")] [Address(RVA = "0x634740", Offset = "0x633740", VA = "0x180634740", Slot = "2")] public override int GetHashCode() { return 0; } /// Converts the string representation of a number in a specified culture-specific format to its equivalent. /// A string that contains a number to convert. The string is interpreted using the style. /// An object that supplies culture-specific parsing information about . If is , the thread current culture is used. /// A byte value that is equivalent to the number contained in . /// /// is . /// /// is not of the correct format. /// /// represents a number less than or greater than . // Token: 0x060005AE RID: 1454 RVA: 0x00004860 File Offset: 0x00002A60 [Token(Token = "0x60005AE")] [Address(RVA = "0x2D0EAD0", Offset = "0x2D0DAD0", VA = "0x182D0EAD0")] public static byte Parse(string s, IFormatProvider provider) { return 0; } /// Converts the string representation of a number in a specified style and culture-specific format to its equivalent. /// A string that contains a number to convert. The string is interpreted using the style specified by . /// 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 information about the format of . If is , the thread current culture is used. /// A byte value that is equivalent to the number contained in . /// /// is . /// /// is not of the correct format. /// /// represents a number less than or greater than . /// -or- /// includes non-zero, fractional digits. /// /// is not a value. /// -or- /// is not a combination of and values. // Token: 0x060005AF RID: 1455 RVA: 0x00004878 File Offset: 0x00002A78 [Token(Token = "0x60005AF")] [Address(RVA = "0x2D0EB00", Offset = "0x2D0DB00", VA = "0x182D0EB00")] public static byte Parse(string s, NumberStyles style, IFormatProvider provider) { return 0; } // Token: 0x060005B0 RID: 1456 RVA: 0x00004890 File Offset: 0x00002A90 [Token(Token = "0x60005B0")] [Address(RVA = "0x2D0E9D0", Offset = "0x2D0D9D0", VA = "0x182D0E9D0")] private static byte Parse(string s, NumberStyles style, NumberFormatInfo info) { return 0; } /// Tries to convert the string representation of a number to its equivalent, and returns a value that indicates whether the conversion succeeded. /// A string that contains a number to convert. The string is interpreted using the style. /// When this method returns, contains the value equivalent to the number contained in if the conversion succeeded, or zero if the conversion failed. This parameter is passed uninitialized; any value originally supplied in will be overwritten. /// /// if was converted successfully; otherwise, . // Token: 0x060005B1 RID: 1457 RVA: 0x000048A8 File Offset: 0x00002AA8 [Token(Token = "0x60005B1")] [Address(RVA = "0x2D0F300", Offset = "0x2D0E300", VA = "0x182D0F300")] public static bool TryParse(string s, out byte result) { return default(bool); } /// Converts the string representation of a number in a specified style and culture-specific format to its equivalent. A return value indicates whether the conversion succeeded or failed. /// A string containing a number to convert. The string is interpreted using the style specified by . /// 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 . If is , the thread current culture is used. /// When this method returns, contains the 8-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 of the correct format, or represents a number 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: 0x060005B2 RID: 1458 RVA: 0x000048C0 File Offset: 0x00002AC0 [Token(Token = "0x60005B2")] [Address(RVA = "0x2D0F220", Offset = "0x2D0E220", VA = "0x182D0F220")] public static bool TryParse(string s, NumberStyles style, IFormatProvider provider, out byte result) { return default(bool); } // Token: 0x060005B3 RID: 1459 RVA: 0x000048D8 File Offset: 0x00002AD8 [Token(Token = "0x60005B3")] [Address(RVA = "0x2D0F2B0", Offset = "0x2D0E2B0", VA = "0x182D0F2B0")] private static bool TryParse(string s, NumberStyles style, NumberFormatInfo info, out byte result) { return default(bool); } /// Converts the value of the current object to its equivalent string representation. /// 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. // Token: 0x060005B4 RID: 1460 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x60005B4")] [Address(RVA = "0x2D0F170", Offset = "0x2D0E170", VA = "0x182D0F170", Slot = "3")] public override string ToString() { return null; } /// Converts the value of the current object to its equivalent string representation using the specified format. /// A numeric format string. /// The string representation of the current object, formatted as specified by the parameter. /// /// includes an unsupported specifier. Supported format specifiers are listed in the Remarks section. // Token: 0x060005B5 RID: 1461 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x60005B5")] [Address(RVA = "0x2D0F1A0", Offset = "0x2D0E1A0", VA = "0x182D0F1A0")] public string ToString(string format) { return null; } /// Converts the numeric value of the current object to its equivalent string representation using the specified culture-specific formatting information. /// An object that supplies culture-specific formatting information. /// The string representation of the value of this object in the format specified by the parameter. // Token: 0x060005B6 RID: 1462 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x60005B6")] [Address(RVA = "0x2D0F140", Offset = "0x2D0E140", VA = "0x182D0F140", Slot = "21")] public string ToString(IFormatProvider provider) { return null; } /// Converts the value of the current object to its equivalent string representation using the specified format and culture-specific formatting information. /// A standard or custom numeric format string. /// An object that supplies culture-specific formatting information. /// The string representation of the current object, formatted as specified by the and parameters. /// /// includes an unsupported specifier. Supported format specifiers are listed in the Remarks section. // Token: 0x060005B7 RID: 1463 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x60005B7")] [Address(RVA = "0x2D0F1E0", Offset = "0x2D0E1E0", VA = "0x182D0F1E0", Slot = "5")] public string ToString(string format, IFormatProvider provider) { return null; } /// Returns the for value type . /// The enumerated constant, . // Token: 0x060005B8 RID: 1464 RVA: 0x000048F0 File Offset: 0x00002AF0 [Token(Token = "0x60005B8")] [Address(RVA = "0x62FA10", Offset = "0x62EA10", VA = "0x18062FA10", 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: 0x060005B9 RID: 1465 RVA: 0x00004908 File Offset: 0x00002B08 [Token(Token = "0x60005B9")] [Address(RVA = "0x2D0EB50", Offset = "0x2D0DB50", VA = "0x182D0EB50", 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: 0x060005BA RID: 1466 RVA: 0x00004920 File Offset: 0x00002B20 [Token(Token = "0x60005BA")] [Address(RVA = "0x2D0EBB0", Offset = "0x2D0DBB0", VA = "0x182D0EBB0", 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: 0x060005BB RID: 1467 RVA: 0x00004938 File Offset: 0x00002B38 [Token(Token = "0x60005BB")] [Address(RVA = "0x2D0EED0", Offset = "0x2D0DED0", VA = "0x182D0EED0", 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, unchanged. // Token: 0x060005BC RID: 1468 RVA: 0x00004950 File Offset: 0x00002B50 [Token(Token = "0x60005BC")] [Address(RVA = "0x634740", Offset = "0x633740", VA = "0x180634740", 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: 0x060005BD RID: 1469 RVA: 0x00004968 File Offset: 0x00002B68 [Token(Token = "0x60005BD")] [Address(RVA = "0x2D0EDB0", Offset = "0x2D0DDB0", VA = "0x182D0EDB0", 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: 0x060005BE RID: 1470 RVA: 0x00004980 File Offset: 0x00002B80 [Token(Token = "0x60005BE")] [Address(RVA = "0x2D0F020", Offset = "0x2D0E020", VA = "0x182D0F020", 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: 0x060005BF RID: 1471 RVA: 0x00004998 File Offset: 0x00002B98 [Token(Token = "0x60005BF")] [Address(RVA = "0x2D0EE10", Offset = "0x2D0DE10", VA = "0x182D0EE10", 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, converted to a . // Token: 0x060005C0 RID: 1472 RVA: 0x000049B0 File Offset: 0x00002BB0 [Token(Token = "0x60005C0")] [Address(RVA = "0x2D0F080", Offset = "0x2D0E080", VA = "0x182D0F080", 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: 0x060005C1 RID: 1473 RVA: 0x000049C8 File Offset: 0x00002BC8 [Token(Token = "0x60005C1")] [Address(RVA = "0x2D0EE70", Offset = "0x2D0DE70", VA = "0x182D0EE70", 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: 0x060005C2 RID: 1474 RVA: 0x000049E0 File Offset: 0x00002BE0 [Token(Token = "0x60005C2")] [Address(RVA = "0x2D0F0E0", Offset = "0x2D0E0E0", VA = "0x182D0F0E0", 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: 0x060005C3 RID: 1475 RVA: 0x000049F8 File Offset: 0x00002BF8 [Token(Token = "0x60005C3")] [Address(RVA = "0x2D0EF30", Offset = "0x2D0DF30", VA = "0x182D0EF30", 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: 0x060005C4 RID: 1476 RVA: 0x00004A10 File Offset: 0x00002C10 [Token(Token = "0x60005C4")] [Address(RVA = "0x2D0ED50", Offset = "0x2D0DD50", VA = "0x182D0ED50", 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: 0x060005C5 RID: 1477 RVA: 0x00004A28 File Offset: 0x00002C28 [Token(Token = "0x60005C5")] [Address(RVA = "0x2D0ECE0", Offset = "0x2D0DCE0", VA = "0x182D0ECE0", 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: 0x060005C6 RID: 1478 RVA: 0x00004A40 File Offset: 0x00002C40 [Token(Token = "0x60005C6")] [Address(RVA = "0x2D0EC10", Offset = "0x2D0DC10", VA = "0x182D0EC10", 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 information about the format of the returned value. /// The value of the current instance, converted to . /// /// is . /// The requested type conversion is not supported. // Token: 0x060005C7 RID: 1479 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x60005C7")] [Address(RVA = "0x2D0EF90", Offset = "0x2D0DF90", VA = "0x182D0EF90", Slot = "22")] object IConvertible.ToType(Type type, IFormatProvider provider) { return null; } // Token: 0x04000226 RID: 550 [global::Cpp2IlInjected.FieldOffset(Offset = "0x0")] [Token(Token = "0x4000226")] private byte m_value; /// Represents the largest possible value of a . This field is constant. // Token: 0x04000227 RID: 551 [Token(Token = "0x4000227")] public const byte MaxValue = 255; /// Represents the smallest possible value of a . This field is constant. // Token: 0x04000228 RID: 552 [Token(Token = "0x4000228")] public const byte MinValue = 0; } }