4
Reply

how to convert ascii value to hexa value

jeevan mummadi

jeevan mummadi

Sep 17 2008 6:27 AM
7.3k

string name = "abcdef";

byte[] dec = new byte[20];

char[] hex = new char[20];

dec = Encoding.ASCII.GetBytes(name);

i convert string to ascii value i want convert ascii to hexa value plz help


Answers (4)