UInt16Converter Class
Provides a type converter to convert 16-bit unsigned integer objects to and from other representations.
For a list of all members of this type, see UInt16Converter Members.
System.Object
System.ComponentModel.TypeConverter
System.ComponentModel.BaseNumberConverter
System.ComponentModel.UInt16Converter
[Visual Basic] Public Class UInt16Converter Inherits BaseNumberConverter [C#] public class UInt16Converter : BaseNumberConverter [C++] public __gc class UInt16Converter : public BaseNumberConverter [JScript] public class UInt16Converter 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 16-bit unsigned integer object to and from a string.
The UInt16 value type represents unsigned integers with values ranging from 0 to 65535. This data type is not supported in Visual Basic.
Note You should never create an instance of a UInt16Converter. 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 UInt16 to a string and vice versa.
[Visual Basic] 'This data type is not supported in Visual Basic. [C#] ushort myUInt16 = 10000; string myUInt16String = "20000"; Console.WriteLine(TypeDescriptor.GetConverter(myUInt16).ConvertTo(myUInt16, typeof(string))); Console.WriteLine(TypeDescriptor.GetConverter(myUInt16).ConvertFrom(myUInt16String)); [C++] unsigned short myUInt16( 10000 ); String* myUInt16String = S"20000"; Console::WriteLine(TypeDescriptor::GetConverter(__box(myUInt16))->ConvertTo(__box(myUInt16), __typeof(String))); Console::WriteLine(TypeDescriptor::GetConverter(__box(myUInt16))->ConvertFrom(myUInt16String));
[JScript] No example is available for JScript. To view a Visual Basic, C#, or C++ example, click the Language Filter button
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)