FormatterConverter.ToInt32(Object) Method

Definition

Converts a value to a 32-bit signed integer.

public:
 virtual int ToInt32(System::Object ^ value);
public int ToInt32 (object value);
abstract member ToInt32 : obj -> int
override this.ToInt32 : obj -> int
Public Function ToInt32 (value As Object) As Integer

Parameters

value
Object

The object to convert.

Returns

The converted value or null if the type parameter is null.

Implements

Exceptions

The value parameter is null.

Remarks

This method uses the invariant culture (see CultureInfo.InvariantCulture). To use the current culture or to specify a culture, use the Convert.ToInt32 method instead. For more information, see Int32, Convert, and ValueType.

Applies to