Hi,
I have a variable named x and it has a value in hexadecimal format but type of x is string.
Dim x as String
x="AF"
I want to convert this string (actually hex) to binary equivalent. Like this
x="10101111"
is there any function in .Net to do this convertion?
Thanks in advance.
I have a variable named x and it has a value in hexadecimal format but type of x is string.
Dim x as String
x="AF"
I want to convert this string (actually hex) to binary equivalent. Like this
x="10101111"
is there any function in .Net to do this convertion?
Thanks in advance.