Convert a string value representing an HEX ....into a real HEX value

  • Thread starter Thread starter Filippo
  • Start date Start date
F

Filippo

Hi there,
I have a string with an HEX value "D3".
I need to convert it to a real HEX value 0xD3.

Do you know how?

Thanks,
Filippo.
 
Take a look at Parse method of numeric types (Int32.Parse(...) for example)

Val.

Hi there,
I have a string with an HEX value "D3".
I need to convert it to a real HEX value 0xD3.

Do you know how?

Thanks,
Filippo.
 
Back
Top