-2
我需要將此控制檯代碼轉換爲WinForms
代碼。 此代碼爲HexDump
格式的recevieng數據。我試圖將 Console.WriteLine(Hex.Dump(example))
轉換爲textBox4.Text (Hex.Dump(example))
我不知道它是否正確,並且仍然難以轉換Console.OutputEncoding
。(C#)努力將Console.App代碼遷移到WIndows表單
Console.OutputEncoding = Encoding.GetEncoding(1252);
byte[] example = Enumerable.Range(0, 256).Select(x => (byte)x).ToArray();
Console.WriteLine(Hex.Dump(example));
而問題是什麼? – niksofteng
使用RichTextBox代替Textbox,因此不需要Console.OutputEncoding = Encoding.GetEncoding(1252); 和 RichTextBox.Text =(Hex.Dump(示例))應該工作 –