Forum Discussion

Vasily_Zaytsev's avatar
Vasily_Zaytsev
Iron Contributor
Sep 23, 2021
Solved

How can I decode varbinary(max)?

Hello. How can I decode some values in varbinary(max)? If I have  30 91 40 it is 1100 in decimal If I have  30 A1 40 it is 2200 in decimal BR, Vasily
  • Vasily_Zaytsev's avatar
    Sep 23, 2021
    Sorry, I found solution
    [bitconverter]::ToDouble([byte[]](0x00,0x00,0x00,0x00,0x00,0x30,0x91,0x40),0)
    [bitconverter]::ToDouble([byte[]](0x00,0x00,0x00,0x00,0x00,0x30,0xA1,0x40),0)
    Have a nice day