gpt4 book ai didi

c# - 如何从字符串中获取包含空终止字符的字节?

转载 作者:行者123 更新时间:2023-12-03 22:57:34 26 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





How to get a null terminated string from a C# string?

(4 个回答)


3年前关闭。




你好 StackOverflowers,

我在某处读到 C# 字符串不是空终止的。没问题!但我想知道该方法是否:

byte[] myBytes = Encoding.ASCII.GetBytes(myString);

在数组末尾添加一个空终止字符,或者我必须手动执行吗? (将使用该数组的 C 系统确实需要它)。

如果手动,我想方法是:
byte[] myBytes = Encoding.ASCII.GetBytes(myString + '\0');

数据是 ASCII,不用担心编码。

最佳答案

它没有添加,您的第二个代码将起作用。

byte[] myBytes = 
Encoding.ASCII.GetBytes("A"); // gives {65}

byte[] myBytes =
Encoding.ASCII.GetBytes("A"+"\0"); // gives {65, 0}

关于c# - 如何从字符串中获取包含空终止字符的字节?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51382103/

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