I want to Convert hexadecimal numbers to binary numbers.I search some posts but couldn't find a c# language program.
I used this:
value = 0xFFFF;
decimalNum = Convert.ToString(value, 16);
Console.WriteLine(value);
and then I converted it to binary number. Are there any easier and fast way to do this?