Name

Int32

Synopsis

This is the value type for 32-bit integers (which can range from -2,147,483,648 to 2,147,483,647). This is also available in C# through the int alias.

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

ObjectValueTypeInt32(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.