Posts Tagged ‘Convert to Hex’
How to convert string to Hex
Posted by: admin in .NET, String Manipulation, VB.Net on September 8th, 2009
-
Function HexToDec(ByVal value As String) As Long
-
' we just need a call to the Convert.ToInt64 static method
-
Return Convert.ToInt64(value, 16)
-
End Function