UInt16Converter Class
.NET Framework 3.0
Provides a type converter to convert 16-bit unsigned integer objects to and from other representations.
Namespace: System.ComponentModel
Assembly: System (in system.dll)
Assembly: System (in system.dll)
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 How to: Implement a Type Converter. |
The following example converts a variable of type UInt16 to a string and vice versa.
int myUInt16 = 10000;
String myUInt16String = "20000";
Console.WriteLine(TypeDescriptor.GetConverter((UInt16)myUInt16).
ConvertTo((UInt16)myUInt16, String.class.ToType()));
Console.WriteLine(TypeDescriptor.GetConverter((UInt16)myUInt16).
ConvertFrom(myUInt16String));
System.Object
System.ComponentModel.TypeConverter
System.ComponentModel.BaseNumberConverter
System.ComponentModel.UInt16Converter
System.ComponentModel.TypeConverter
System.ComponentModel.BaseNumberConverter
System.ComponentModel.UInt16Converter
Windows 98, Windows Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show:
Note: