I\'m trying to convert a String of hex to ASCII, using this:
public void ConvertHex(String hexString) { StringBuilder sb = new StringBuilder(); for
String hs = hexString.Substring(i, i + 2); System.Convert.ToChar(System.Convert.ToUInt32(hexString.Substring(0, 2), 16)).ToString();
Do you notice you're never using hs ??
hs
And that you're converting the first 2 chars over and over?