I need to convert hex to a decimal in VB.NET. Found several examples in C#, but when I tried to convert to VB.NET I was not successful. An example of a hexadecimal number th
Tried the others replies and this was the one that worked for me:
Convert.ToInt32(yourHEXString, 16)
Documentation