如何将 CString 转换为 Byte

发布于 2024-08-09 06:07:04 字数 239 浏览 4 评论 0原文

我实际上正在尝试将 csharp 代码转换为 c...下面是 C# 代码..

CString data = "world is beautiful";    
Byte[] quote = ASCIIEncoding.UTF8.GetBytes(data);

在上面的代码中...它将字符串转换为字节..同样是我可以使用 C 转换它的方法.. 谁能告诉我 C 中的等效代码是什么? 请帮助我伙计们

i am actually tryin to convert a csharp code to c... below is the C# code..

CString data = "world is beautiful";    
Byte[] quote = ASCIIEncoding.UTF8.GetBytes(data);

in the above code... it converts the string into bytes..similarily is ther a way that i can convert it using C..
Can any body tell what wud be the quivalent code in C?
Please help me guys

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

且行且努力 2024-08-16 06:07:04

CString 是一个 C++ 类,因此用 C 语言不太可能实现它。

但是如果您希望将其作为标准多字节编码字符串,那么您可以执行以下操作

CString data    = "world is beautiful";
CStringA mbStr  = data;
char* bytes     = mbStr.GetString();

Well CString is a C++ class so doing it in C is a little unlikely.

But if you wish to get it as a standard multi-byte encoded string then you can do the following

CString data    = "world is beautiful";
CStringA mbStr  = data;
char* bytes     = mbStr.GetString();
献世佛 2024-08-16 06:07:04

在 C 语言中,char 类型被定义为内存中的一个字节。因此,将字符串存储为 char * 相当于在 C# 中存储字节数组。

In C the char type is defined as one byte in memory. Hence storing your string as a char * would be equivalent to storing a byte array in C#.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文