This documentation is archived and is not being maintained.
Conversion.Hex Method (UInt16)
Visual Studio 2010
Returns a string representing the hexadecimal value of a number.
Assembly: Microsoft.VisualBasic (in Microsoft.VisualBasic.dll)
Parameters
- Number
- Type: System.UInt16
Required. Any valid numeric expression or String expression.
Exception | Condition |
---|---|
ArgumentNullException | Number is not specified. |
ArgumentException | Number is not a numeric type. |
If Number is not already a whole number, it is rounded to the nearest whole number before being evaluated.
If Number is | Hex returns |
Empty | Zero (0) |
Any numeric value | Up to sixteen hexadecimal characters |
You can represent hexadecimal numbers directly by preceding numbers in the proper range with &H. For example, &H10 represents decimal 16 in hexadecimal notation.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: