Name

Int16

Synopsis

This is the value type for 16-bit integers (which can range from -32,768 to 32,767). This is also available in C# through the short alias.

public struct Int16 : IComparable, IFormattable, IConvertible {
// Public Static Fields
   public const field short MaxValue;                            // =32767
   public const field short MinValue;                            // =-32768
                  // Public Static Methods
   public static method short Parse(string s);  
   public static method short Parse(string s, 
        IFormatProvider provider);  
   public static method short Parse(string s, 
        System.Globalization.NumberStyles style);  
   public static method short Parse(string s, 
        System.Globalization.NumberStyles style, 
        IFormatProvider provider);  
// Public Instance Methods
   public method int CompareTo(object value);                   // implements IComparable
   public override method bool Equals(object obj);              // overrides ValueType
   public override method int GetHashCode();                     // overrides ValueType
   public method TypeCode GetTypeCode();                         // implements IConvertible
   public override method string ToString();                     // overrides ValueType
   public method string ToString(IFormatProvider provider);     // implements IConvertible
   public method string ToString(string format);  
   public method string ToString(string format,                  // implements IFormattable
        IFormatProvider provider);  
}

Hierarchy

ObjectValueTypeInt16(IComparable, IFormattable, IConvertible)

Returned By

Multiple types

Passed To

Multiple types

Get C# in a Nutshell now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.