1 string str = "hello"; 2 byte[] array = new byte[1]; 3 array = System.Text.Encoding.ASCII.GetBytes(str); //把str的每個字符轉換成ascii碼 4 5 ...
確定! 回上一頁