Conversion.Hex Method (UInt16)
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Returns a string representing the hexadecimal value of a number.
This API is not CLS-compliant. The CLS-compliant alternative is Hex(Int16).
Namespace: Microsoft.VisualBasic
Assembly: Microsoft.VisualBasic (in Microsoft.VisualBasic.dll)
Syntax
'Declaration
<CLSCompliantAttribute(False)> _
Public Shared Function Hex ( _
Number As UShort _
) As String
[CLSCompliantAttribute(false)]
public static string Hex(
ushort Number
)
Parameters
- Number
Type: System.UInt16
Required. Any valid numeric expression or String expression.
Return Value
Type: System.String
Returns a string representing the hexadecimal value of a number.
Remarks
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.
Examples
This example uses the Hex function to return the hexadecimal value of a number.
Dim TestHex As String
' Returns 5.
TestHex = Hex(5)
' Returns A.
TestHex = Hex(10)
' Returns 1CB.
TestHex = Hex(459)
Version Information
Silverlight
Supported in: 5, 4, 3
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.
See Also