Provides a type converter to convert 32-bit signed integer objects to and from other representations.
See Also: Int32Converter Members
This converter can only convert a 32-bit signed integer object to and from a string. The int value type represents signed integers with values ranging from negative 2,147,483,648 through positive 2,147,483,647.
The erload:System.ComponentModel.TypeConverter.ConvertFrom method uses the int.Parse(string) method of int with the integer value of System.Globalization.NumberStyles.
The erload:System.ComponentModel.TypeConverter.ConvertTo method uses the general ("G") format for the string returned.
For more information about type converters, see the System.ComponentModel.TypeConverter base class and How to: Implement a Type Converter.
You should never create an instance of an System.ComponentModel.Int32Converter. Instead, call the TypeDescriptor.GetConverter(object) method of System.ComponentModel.TypeDescriptor. For more information, see the examples in the System.ComponentModel.TypeConverter base class.