简体   繁体   中英

How do I convert a floating point to hexadecimal in VB.NET?

Example: The float value is -1580.719 and I need to convert it to hex in VB.NET (Value in hex should output: C4C59704).

Ok, so I found how to do it:

Dim var As Single = Single.Parse("-1580.719")
Dim varArray() As Byte = BitConverter.GetBytes(var)
Array.Reverse(varArray)
Dim result As String = BitConverter.ToString(varArray).Replace("-", "")

Value of result is:

C4C59702

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM