///
/// Sixteen-string strings into GB Chinese characters (such as "CED2C3C741" converted to "we A")
/// summary>
/// String param> to be converted
/// Translated Chinese character string returns>
Private string HexStr2Str (String HexString)
{
System.text.encoding encode = system.text.Encoding.Getencoding ("GB2312");
Byte [] b = new byte [hexstring.length / 2];
For (int i = 0; i
{
B [i] = convert.tobyte ("0x" HexString.Substring (i * 2, 2), 16);
}
Return encode.getstring (b);
}