UInt64Converter Class
Assembly: System (in system.dll)
This converter can only convert a 64-bit unsigned integer object to and from a string.
The UInt64 value type represents unsigned integers with values ranging from 0 to 184,467,440,737,095,551,615. This data type is not supported in Visual Basic.
Note: |
|---|
| You should never create an instance of a UInt64Converter. 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 code example converts a variable of type UInt64 to a string, and vice versa.
long myUInt64 = 123456789123L;
String myUInt64String = "184467440737095551";
Console.WriteLine(TypeDescriptor.GetConverter((UInt64)myUInt64).
ConvertTo((UInt64)myUInt64, String.class.ToType()));
Console.WriteLine(TypeDescriptor.GetConverter((UInt64)myUInt64).
ConvertFrom(myUInt64String));
System.ComponentModel.TypeConverter
System.ComponentModel.BaseNumberConverter
System.ComponentModel.UInt64Converter
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.
Note: