4
Answers

how to convert ascii value to hexa value

jeevan mummadi

jeevan mummadi

16y
7.3k
1

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)