gpt4 book ai didi

c# - 如何将字符串转换并添加到 List

转载 作者:行者123 更新时间:2023-11-30 22:20:34 28 4
gpt4 key购买 nike

我有一个字符串,我想将其转换为字节(正确使用 encoding.getbytes() 函数),然后将转换产生的字节添加到列表中。

我该怎么做?我想过做一个 for 并转换字符串中的每个字符并将其一个一个地添加到列表中,但我想知道是否有更有效的方法来执行此操作。

最佳答案

class Program
{
static void Main(string[] args)
{
String str = "Kiran Bheemarti";

List<byte> bytes = Encoding.ASCII.GetBytes(str).ToList();

Console.Read();
}
}

关于c# - 如何将字符串转换并添加到 List<byte>?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14905700/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com