Name

UInt16

Synopsis

This structure is the value type for 16-bit unsigned integers (which range from 0 to 65535). It is not CLS-compliant (although Int16 is). This is also available in C# through the ushort alias.

public struct UInt16 : IComparable, IFormattable, IConvertible {
// Public Static Fields
   public const field ushort MaxValue;                           // =65535
   public const field ushort MinValue;                           // =0
                  // Public Static Methods
   public static method ushort Parse(string s);  
   public static method ushort Parse(string s, 
        IFormatProvider provider);  
   public static method ushort Parse(string s, 
        System.Globalization.NumberStyles style);  
   public static method ushort 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

ObjectValueTypeUInt16(IComparable, IFormattable, IConvertible)

Returned By

BitConverter.ToUInt16(), Convert.ToUInt16(), Decimal.ToUInt16(), IConvertible.ToUInt16(), System.IO.BinaryReader.ReadUInt16() ...

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.