Convert String^ in c# to CString in c++/CLI(将 c# 中的 String^ 转换为 c++/CLI 中的 CString)
问题描述
我需要帮助解决在 MFC
中编写应用程序时遇到的一个问题.
I need a help on one question where I stuck while coding my app in MFC
.
我在我的应用程序中使用 CLR
即 Common Language Runtime
来集成 c# API.但现在我坚持将 System::String^
转换为 CString
.我做不到.
I am using CLR
i.e Common Language Runtime
in my application to integrate c# APIs.
but now I stuck on converting System::String^
to CString
.
I am not able to do that.
我正在使用以下代码.
String^ csPass = gcnew String(strPassword.GetBuffer());
array<Byte>^ Value = Encoding::UTF8->GetBytes(csPass);
for (int i = 0; i < Value->Length; i++ )
{
csPass += String::Format( "{0:X2}", Value[ i ] );
}
现在我想将 csPass
转换为 CString
.谁可以帮我这个事.提前谢谢你.
now I want to convert csPass
to CString
.
Can any one help me on this.
Thank you in advance.
推荐答案
考虑阅读 this MSDN thread 关于字符串转换.此外,以下讨论可能对您有用:
Consider reading this MSDN thread about string conversions. Also, following discussions may be useful for you:
- 将 CString 转换为 std::wstring
- 问题:如何将CString转换成C++ MFC 中的 const char *
- 在c++中将字符串转换为Cstring
- CString 到 LPCTSTR 的转换
- CString到char的转换
- 如何将_bstr_t转换为CString
使用此材料,您可以了解如何操作,甚至可以发布自己的解决方案作为答案
With this material you can find out how to do it and even post own solution as an answer
这篇关于将 c# 中的 String^ 转换为 c++/CLI 中的 CString的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:将 c# 中的 String^ 转换为 c++/CLI 中的 CString


基础教程推荐
- JSON.NET 中基于属性的类型解析 2022-01-01
- 将事件 TextChanged 分配给表单中的所有文本框 2022-01-01
- 首先创建代码,多对多,关联表中的附加字段 2022-01-01
- 经典 Asp 中的 ResolveUrl/Url.Content 等效项 2022-01-01
- 在 VS2010 中的 Post Build 事件中将 bin 文件复制到物 2022-01-01
- 从 VS 2017 .NET Core 项目的发布目录中排除文件 2022-01-01
- 是否可以在 asp classic 和 asp.net 之间共享会话状态 2022-01-01
- 如何动态获取文本框中datagridview列的总和 2022-01-01
- 错误“此流不支持搜索操作"在 C# 中 2022-01-01
- 全局 ASAX - 获取服务器名称 2022-01-01