gpt4 book ai didi

c# - 使用 Encoding.GetBytes 或转换为字节的区别

转载 作者:行者123 更新时间:2023-12-04 12:52:50 27 4
gpt4 key购买 nike

<分区>

我想知道使用 Encoding.UTF8.GetBytes 将字符转换为字节或在字符前手动使用 (byte) 并将它们转换为字节之间是否有任何区别?

例如,看下面的代码:

public static byte[] ConvertStringToByteArray(string str)
{
int i, n;
n = str.Length;
byte[] x = new byte[n];
for (i = 0; i < n; i++)
{
x[i] = (byte)str[i];
}
return x;
}

var arrBytes = ConvertStringToByteArray("Hello world");

var arrBytes = Encoding.UTF8.GetBytes("Hello world");

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