UInt32Converter Class
Definition
Provides a type converter to convert 32-bit unsigned integer objects to and from various other representations.
public class UInt32Converter : System.ComponentModel.BaseNumberConverter
- Inheritance
Inherited Members
System.ComponentModel.BaseNumberConverter
System.ComponentModel.TypeConverter
System.Object
Examples
The following example converts a variable of type UInt32 to a string, and vice versa.
unsigned int myUInt32(967299);
String^ myUInt32String = "1345556";
Console::WriteLine( TypeDescriptor::GetConverter( myUInt32 )->ConvertTo( myUInt32, String::typeid ) );
Console::WriteLine( TypeDescriptor::GetConverter( myUInt32 )->ConvertFrom( myUInt32String ) );
uint myUInt32 = 967299;
string myUInt32String = "1345556";
Console.WriteLine(TypeDescriptor.GetConverter(myUInt32).ConvertTo(myUInt32, typeof(string)));
Console.WriteLine(TypeDescriptor.GetConverter(myUInt32).ConvertFrom(myUInt32String));
'This data type is not supported in Visual Basic.
Remarks
This converter can only convert a 32-bit unsigned integer object to and from a string.
The UInt32 value type represents unsigned integers with values ranging from 0 to 4,294,967,295. This data type is not supported in Visual Basic.
Note
You should never create an instance of a UInt32Converter. Instead, call the GetConverter method of TypeDescriptor. For more information, see the examples in the TypeConverter base class and How to: Implement a Type Converter.
Constructors
| UInt32Converter() |
Initializes a new instance of the UInt32Converter class. |