Int32 Struct
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Represents a 32-bit signed integer.
public value class int : IComparable, IComparable<int>, IConvertible, IEquatable<int>, IFormattable
public value class int : IComparable, IConvertible, IFormattable
public value class int : IComparable, IComparable<int>, IEquatable<int>, IFormattable
public struct Int32 : IComparable, IComparable<int>, IConvertible, IEquatable<int>, IFormattable
[System.Serializable]
public struct Int32 : IComparable, IConvertible, IFormattable
[System.Serializable]
[System.Runtime.InteropServices.ComVisible(true)]
public struct Int32 : IComparable, IComparable<int>, IConvertible, IEquatable<int>, IFormattable
public struct Int32 : IComparable, IComparable<int>, IEquatable<int>, IFormattable
public readonly struct Int32 : IComparable, IComparable<int>, IConvertible, IEquatable<int>, IFormattable
type int = struct
interface IConvertible
interface IFormattable
[<System.Serializable>]
type int = struct
interface IFormattable
interface IConvertible
[<System.Serializable>]
[<System.Runtime.InteropServices.ComVisible(true)>]
type int = struct
interface IFormattable
interface IConvertible
type int = struct
interface IFormattable
Public Structure Int32
Implements IComparable, IComparable(Of Integer), IConvertible, IEquatable(Of Integer), IFormattable
Public Structure Int32
Implements IComparable, IConvertible, IFormattable
Public Structure Int32
Implements IComparable, IComparable(Of Integer), IEquatable(Of Integer), IFormattable
- Inheritance
- Attributes
- Implements
Remarks
For more information about this API, see Supplemental API remarks for Int32.
Fields
| Name | Description |
|---|---|
| MaxValue |
Represents the largest possible value of an Int32. This field is constant. |
| MinValue |
Represents the smallest possible value of Int32. This field is constant. |
Methods
| Name | Description |
|---|---|
| CompareTo(Int32) |
Compares this instance to a specified 32-bit signed integer and returns an indication of their relative values. |
| CompareTo(Object) |
Compares this instance to a specified object and returns an indication of their relative values. |
| Equals(Int32) |
Returns a value indicating whether this instance is equal to a specified Int32 value. |
| Equals(Object) |
Returns a value indicating whether this instance is equal to a specified object. |
| GetHashCode() |
Returns the hash code for this instance. |
| GetTypeCode() | |
| Parse(ReadOnlySpan<Char>, NumberStyles, IFormatProvider) |
Converts the span representation of a number in a specified style and culture-specific format to its 32-bit signed integer equivalent. |
| Parse(String, IFormatProvider) |
Converts the string representation of a number in a specified culture-specific format to its 32-bit signed integer equivalent. |
| Parse(String, NumberStyles, IFormatProvider) |
Converts the string representation of a number in a specified style and culture-specific format to its 32-bit signed integer equivalent. |
| Parse(String, NumberStyles) |
Converts the string representation of a number in a specified style to its 32-bit signed integer equivalent. |
| Parse(String) |
Converts the string representation of a number to its 32-bit signed integer equivalent. |
| ToString() |
Converts the numeric value of this instance to its equivalent string representation. |
| ToString(IFormatProvider) |
Converts the numeric value of this instance to its equivalent string representation using the specified culture-specific format information. |
| ToString(String, IFormatProvider) |
Converts the numeric value of this instance to its equivalent string representation using the specified format and culture-specific format information. |
| ToString(String) |
Converts the numeric value of this instance to its equivalent string representation, using the specified format. |
| TryFormat(Span<Char>, Int32, ReadOnlySpan<Char>, IFormatProvider) |
Tries to format the value of the current integer number instance into the provided span of characters. |
| TryParse(ReadOnlySpan<Char>, Int32) |
Converts the span representation of a number in a culture-specific format to its 32-bit signed integer equivalent. A return value indicates whether the conversion succeeded. |
| TryParse(ReadOnlySpan<Char>, NumberStyles, IFormatProvider, Int32) |
Converts the span representation of a number in a specified style and culture-specific format to its 32-bit signed integer equivalent. A return value indicates whether the conversion succeeded. |
| TryParse(String, Int32) |
Converts the string representation of a number to its 32-bit signed integer equivalent. A return value indicates whether the conversion succeeded. |
| TryParse(String, NumberStyles, IFormatProvider, Int32) |
Converts the string representation of a number in a specified style and culture-specific format to its 32-bit signed integer equivalent. A return value indicates whether the conversion succeeded. |
Explicit Interface Implementations
Applies to
Thread Safety
All members of this type are thread safe. Members that appear to modify instance state actually return a new instance initialized with the new value. As with any other type, reading and writing to a shared variable that contains an instance of this type must be protected by a lock to guarantee thread safety.