在C#中,可以使用以下方法逐字節拆分字符串:
string input = "Hello World";
List<string> byteList = new List<string>();
for (int i = 0; i < input.Length; i++)
{
byteList.Add(input[i].ToString());
}
foreach (string s in byteList)
{
Console.WriteLine(s);
}
這段代碼將字符串"Hello World"逐字節拆分并存儲在List