jeevan mummadi

jeevan mummadi

  • NA
  • 157
  • 0

how to convert ascii value to hexa value

Sep 17 2008 6:27 AM

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)