public static string Read_String(byte[] data) { string text = new String(Encoding.GetEncoding("shift_jis").GetChars(data)); text = Helper.SJISToLatin(text.Replace("\0", "")); return text; }