Dient zum umwandlen von in Hex gewandeltem Text zurück in lesbaren Text:
"30352D30352D"
Diese Form hab ich in einer CDATA Section eines XML Files gefunden (Export aus Sybase Datenbank)
public static string Hex2String(string hex)
{
string result = "";
int count = hex.Length / 2;
int s;
for (s = 0; s < count; s++)
{
string zeichen = hex.Substring(s * 2, 2);
result += (char) Convert.ToUInt16(zeichen, 16);
}
return result;
}
1 Kommentare zum Snippet