using System; using System.Globalization; using System.Runtime.InteropServices; using Cpp2IlInjected; namespace System { /// Represents a 16-bit signed integer. // Token: 0x02000114 RID: 276 [Token(Token = "0x2000114")] [ComVisible(true)] [Serializable] public struct Int16 : IComparable, IFormattable, IConvertible, IComparable, IEquatable { /// Compares this instance to a specified object and returns an integer that indicates whether the value of this instance is less than, equal to, or greater than the value of the object. /// 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 an . // Token: 0x060009E2 RID: 2530 RVA: 0x00008B80 File Offset: 0x00006D80 [Token(Token = "0x60009E2")] [Address(RVA = "0xCBE7B0", Offset = "0xCBD7B0", VA = "0x180CBE7B0", Slot = "4")] public int CompareTo(object value) { return 0; } /// Compares this instance to a specified 16-bit signed integer and returns an integer that indicates whether the value of this instance is less than, equal to, or greater than the value of the specified 16-bit signed integer. /// An 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: 0x060009E3 RID: 2531 RVA: 0x00008B98 File Offset: 0x00006D98 [Token(Token = "0x60009E3")] [Address(RVA = "0xCBE7A0", Offset = "0xCBD7A0", VA = "0x180CBE7A0", Slot = "23")] public int CompareTo(short value) { return 0; } /// Returns a value indicating whether this instance is equal to a specified object. /// An object to compare to this instance. /// /// if is an instance of and equals the value of this instance; otherwise, . // Token: 0x060009E4 RID: 2532 RVA: 0x00008BB0 File Offset: 0x00006DB0 [Token(Token = "0x60009E4")] [Address(RVA = "0xCBE890", Offset = "0xCBD890", VA = "0x180CBE890", Slot = "0")] public override bool Equals(object obj) { return default(bool); } /// Returns a value indicating whether this instance is equal to a specified value. /// An value to compare to this instance. /// /// if has the same value as this instance; otherwise, . // Token: 0x060009E5 RID: 2533 RVA: 0x00008BC8 File Offset: 0x00006DC8 [Token(Token = "0x60009E5")] [Address(RVA = "0xCBE880", Offset = "0xCBD880", VA = "0x180CBE880", Slot = "24")] public bool Equals(short obj) { return default(bool); } /// Returns the hash code for this instance. /// A 32-bit signed integer hash code. // Token: 0x060009E6 RID: 2534 RVA: 0x00008BE0 File Offset: 0x00006DE0 [Token(Token = "0x60009E6")] [Address(RVA = "0xCBE920", Offset = "0xCBD920", VA = "0x180CBE920", 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 minus sign if the value is negative, and a sequence of digits ranging from 0 to 9 with no leading zeroes. // Token: 0x060009E7 RID: 2535 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x60009E7")] [Address(RVA = "0xCBF1D0", Offset = "0xCBE1D0", VA = "0x180CBF1D0", 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 that supplies culture-specific formatting information. /// The string representation of the value of this instance as specified by . // Token: 0x060009E8 RID: 2536 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x60009E8")] [Address(RVA = "0xCBF100", Offset = "0xCBE100", VA = "0x180CBF100", 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 . // Token: 0x060009E9 RID: 2537 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x60009E9")] [Address(RVA = "0xCBF200", Offset = "0xCBE200", VA = "0x180CBF200")] 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 formatting information. /// A numeric format string. /// An object that supplies culture-specific formatting information. /// The string representation of the value of this instance as specified by and . // Token: 0x060009EA RID: 2538 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x60009EA")] [Address(RVA = "0xCBF240", Offset = "0xCBE240", VA = "0x180CBF240", Slot = "5")] public string ToString(string format, IFormatProvider provider) { return null; } // Token: 0x060009EB RID: 2539 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x60009EB")] [Address(RVA = "0xCBF130", Offset = "0xCBE130", VA = "0x180CBF130")] private string ToString(string format, NumberFormatInfo info) { return null; } /// Converts the string representation of a number in a specified culture-specific format to its 16-bit signed integer equivalent. /// A string containing a number to convert. /// An that supplies culture-specific formatting information about . /// A 16-bit signed integer equivalent to the number specified in . /// /// is . /// /// is not in the correct format. /// /// represents a number less than or greater than . // Token: 0x060009EC RID: 2540 RVA: 0x00008BF8 File Offset: 0x00006DF8 [Token(Token = "0x60009EC")] [Address(RVA = "0xCBE930", Offset = "0xCBD930", VA = "0x180CBE930")] public static short Parse(string s, IFormatProvider provider) { return 0; } /// Converts the string representation of a number in a specified style and culture-specific format to its 16-bit signed integer equivalent. /// A string containing a number to convert. /// A bitwise combination of enumeration values that indicates the style elements that can be present in . A typical value to specify is . /// An that supplies culture-specific formatting information about . /// A 16-bit signed 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 less than or greater than . /// -or- /// includes non-zero fractional digits. // Token: 0x060009ED RID: 2541 RVA: 0x00008C10 File Offset: 0x00006E10 [Token(Token = "0x60009ED")] [Address(RVA = "0xCBE960", Offset = "0xCBD960", VA = "0x180CBE960")] public static short Parse(string s, NumberStyles style, IFormatProvider provider) { return 0; } // Token: 0x060009EE RID: 2542 RVA: 0x00008C28 File Offset: 0x00006E28 [Token(Token = "0x60009EE")] [Address(RVA = "0xCBE9B0", Offset = "0xCBD9B0", VA = "0x180CBE9B0")] private static short Parse(string s, NumberStyles style, NumberFormatInfo info) { return 0; } /// Converts the string representation of a number in a specified style and culture-specific format to its 16-bit signed integer 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 . /// When this method returns, contains the 16-bit signed 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 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: 0x060009EF RID: 2543 RVA: 0x00008C40 File Offset: 0x00006E40 [Token(Token = "0x60009EF")] [Address(RVA = "0xCBF300", Offset = "0xCBE300", VA = "0x180CBF300")] public static bool TryParse(string s, NumberStyles style, IFormatProvider provider, out short result) { return default(bool); } // Token: 0x060009F0 RID: 2544 RVA: 0x00008C58 File Offset: 0x00006E58 [Token(Token = "0x60009F0")] [Address(RVA = "0xCBF280", Offset = "0xCBE280", VA = "0x180CBF280")] private static bool TryParse(string s, NumberStyles style, NumberFormatInfo info, out short result) { return default(bool); } /// Returns the for value type . /// The enumerated constant, . // Token: 0x060009F1 RID: 2545 RVA: 0x00008C70 File Offset: 0x00006E70 [Token(Token = "0x60009F1")] [Address(RVA = "0x4B30C0", Offset = "0x4B20C0", VA = "0x1804B30C0", 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: 0x060009F2 RID: 2546 RVA: 0x00008C88 File Offset: 0x00006E88 [Token(Token = "0x60009F2")] [Address(RVA = "0xCBEB10", Offset = "0xCBDB10", VA = "0x180CBEB10", 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: 0x060009F3 RID: 2547 RVA: 0x00008CA0 File Offset: 0x00006EA0 [Token(Token = "0x60009F3")] [Address(RVA = "0xCBEBD0", Offset = "0xCBDBD0", VA = "0x180CBEBD0", 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: 0x060009F4 RID: 2548 RVA: 0x00008CB8 File Offset: 0x00006EB8 [Token(Token = "0x60009F4")] [Address(RVA = "0xCBEE90", Offset = "0xCBDE90", VA = "0x180CBEE90", 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: 0x060009F5 RID: 2549 RVA: 0x00008CD0 File Offset: 0x00006ED0 [Token(Token = "0x60009F5")] [Address(RVA = "0xCBEB70", Offset = "0xCBDB70", VA = "0x180CBEB70", 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, unchanged. // Token: 0x060009F6 RID: 2550 RVA: 0x00008CE8 File Offset: 0x00006EE8 [Token(Token = "0x60009F6")] [Address(RVA = "0x5AADB0", Offset = "0x5A9DB0", VA = "0x1805AADB0", 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, unchanged. // Token: 0x060009F7 RID: 2551 RVA: 0x00008D00 File Offset: 0x00006F00 [Token(Token = "0x60009F7")] [Address(RVA = "0xCBEFE0", Offset = "0xCBDFE0", VA = "0x180CBEFE0", 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: 0x060009F8 RID: 2552 RVA: 0x00008D18 File Offset: 0x00006F18 [Token(Token = "0x60009F8")] [Address(RVA = "0xCBEDD0", Offset = "0xCBDDD0", VA = "0x180CBEDD0", 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: 0x060009F9 RID: 2553 RVA: 0x00008D30 File Offset: 0x00006F30 [Token(Token = "0x60009F9")] [Address(RVA = "0xCBF040", Offset = "0xCBE040", VA = "0x180CBF040", 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: 0x060009FA RID: 2554 RVA: 0x00008D48 File Offset: 0x00006F48 [Token(Token = "0x60009FA")] [Address(RVA = "0xCBEE30", Offset = "0xCBDE30", VA = "0x180CBEE30", 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: 0x060009FB RID: 2555 RVA: 0x00008D60 File Offset: 0x00006F60 [Token(Token = "0x60009FB")] [Address(RVA = "0xCBF0A0", Offset = "0xCBE0A0", VA = "0x180CBF0A0", 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: 0x060009FC RID: 2556 RVA: 0x00008D78 File Offset: 0x00006F78 [Token(Token = "0x60009FC")] [Address(RVA = "0xCBEEF0", Offset = "0xCBDEF0", VA = "0x180CBEEF0", 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: 0x060009FD RID: 2557 RVA: 0x00008D90 File Offset: 0x00006F90 [Token(Token = "0x60009FD")] [Address(RVA = "0xCBED70", Offset = "0xCBDD70", VA = "0x180CBED70", 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: 0x060009FE RID: 2558 RVA: 0x00008DA8 File Offset: 0x00006FA8 [Token(Token = "0x60009FE")] [Address(RVA = "0xCBED00", Offset = "0xCBDD00", VA = "0x180CBED00", 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: 0x060009FF RID: 2559 RVA: 0x00008DC0 File Offset: 0x00006FC0 [Token(Token = "0x60009FF")] [Address(RVA = "0xCBEC30", Offset = "0xCBDC30", VA = "0x180CBEC30", 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 . // Token: 0x06000A00 RID: 2560 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x6000A00")] [Address(RVA = "0xCBEF50", Offset = "0xCBDF50", VA = "0x180CBEF50", Slot = "22")] object IConvertible.ToType(Type type, IFormatProvider provider) { return null; } // Token: 0x04000459 RID: 1113 [global::Cpp2IlInjected.FieldOffset(Offset = "0x0")] [Token(Token = "0x4000459")] internal short m_value; /// Represents the largest possible value of an . This field is constant. // Token: 0x0400045A RID: 1114 [Token(Token = "0x400045A")] public const short MaxValue = 32767; /// Represents the smallest possible value of . This field is constant. // Token: 0x0400045B RID: 1115 [Token(Token = "0x400045B")] public const short MinValue = -32768; } }