using System; using System.Globalization; using System.Runtime.InteropServices; using Cpp2IlInjected; namespace System { /// Represents an 8-bit unsigned integer. // Token: 0x020000BE RID: 190 [Token(Token = "0x20000BE")] [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: 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; } /// 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: 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; } /// 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: 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); } /// 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: 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); } /// Returns the hash code for this instance. /// A hash code for the current . // 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; } /// 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: 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; } /// 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: 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; } /// 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: 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); } /// 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: 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); } /// 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: 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; } /// 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: 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; } /// 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: 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; } /// 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: 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; } /// Returns the for value type . /// The enumerated constant, . // 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; } /// For a description of this member, see . /// This parameter is ignored. /// /// if the value of the current instance is not zero; otherwise, . // 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); } /// For a description of this member, see . /// This parameter is ignored. /// The value of the current instance, converted to a . // 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'; } /// For a description of this member, see . /// This parameter is ignored. /// The value of the current instance, converted to an . // 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; } /// For a description of this member, see . /// This parameter is ignored. /// The value of the current instance, unchanged. // 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; } /// For a description of this member, see . /// This parameter is ignored. /// The value of the current instance, converted to an . // 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; } /// For a description of this member, see . /// This parameter is ignored. /// The value of the current instance, converted to a . // 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; } /// For a description of this member, see . /// This parameter is ignored. /// The value of the current instance, converted to an . // 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; } /// For a description of this member, see . /// This parameter is ignored. /// The value of the current instance, converted to a . // 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; } /// For a description of this member, see . /// This parameter is ignored. /// The value of the current instance, converted to an . // 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; } /// For a description of this member, see . /// This parameter is ignored. /// The value of the current instance, converted to a . // 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; } /// For a description of this member, see . /// This parameter is ignored. /// The value of the current instance, converted to a . // 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; } /// For a description of this member, see . /// This parameter is ignored. /// The value of the current instance, converted to a . // 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; } /// For a description of this member, see . /// This parameter is ignored. /// The value of the current instance, converted to a . // 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; } /// 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: 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); } /// 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: 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; /// Represents the largest possible value of a . This field is constant. // Token: 0x0400021D RID: 541 [Token(Token = "0x400021D")] public const byte MaxValue = 255; /// Represents the smallest possible value of a . This field is constant. // Token: 0x0400021E RID: 542 [Token(Token = "0x400021E")] public const byte MinValue = 0; } }