This documentation is archived and is not being maintained.

UInt32Converter Class

Provides a type converter to convert 32-bit unsigned integer objects to and from various other representations.

For a list of all members of this type, see UInt32Converter Members.

System.Object
   System.ComponentModel.TypeConverter
      System.ComponentModel.BaseNumberConverter
         System.ComponentModel.UInt32Converter

[Visual Basic]
Public Class UInt32Converter
   Inherits BaseNumberConverter
[C#]
public class UInt32Converter : BaseNumberConverter
[C++]
public __gc class UInt32Converter : public BaseNumberConverter
[JScript]
public class UInt32Converter extends BaseNumberConverter

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

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 Implementing a Type Converter.

Example

[Visual Basic, C#, C++] The following example converts a variable of type UInt32 to a string, and vice versa.

[Visual Basic] 
'This data type is not supported in Visual Basic.
    . . . 
'This data type is not supported in Visual Basic.

[C#] 
uint myUInt32 = 967299;
string myUInt32String = "1345556";
Console.WriteLine(TypeDescriptor.GetConverter(myUInt32).ConvertTo(myUInt32, typeof(string))); 
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));    

[C++] 
unsigned int myUInt32( 967299 );
String* myUInt32String = S"1345556";
Console::WriteLine(TypeDescriptor::GetConverter(__box(myUInt32))->ConvertTo(__box(myUInt32), __typeof(String)));
Console::WriteLine(TypeDescriptor::GetConverter(__box(myUInt32))->ConvertFrom(myUInt32String));
    . . . 
unsigned int myUInt32( 967299 );
String* myUInt32String = S"1345556";
Console::WriteLine(TypeDescriptor::GetConverter(__box(myUInt32))->ConvertTo(__box(myUInt32), __typeof(String)));
Console::WriteLine(TypeDescriptor::GetConverter(__box(myUInt32))->ConvertFrom(myUInt32String));

[JScript] No example is available for JScript. To view a Visual Basic, C#, or C++ example, click the Language Filter button Language Filter in the upper-left corner of the page.

Requirements

Namespace: System.ComponentModel

Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

Assembly: System (in System.dll)

See Also

UInt32Converter Members | System.ComponentModel Namespace

Show: