在 C .NET 中,将 System::String 转换为 std::string 涉及使用 msclr 命名空间提供的封送功能。以下是实现此转换的步骤:
包含必要的标头:
<code class="cpp">#include "stdafx.h" #include <string> #include <msclr\marshal_cppstd.h></code>
定义转换:
<code class="cpp">auto& managedString = gcnew System::String("test"); msclr::interop::marshal_context context; auto& standardString = context.marshal_as<std::string>(managedString);</code>
通过这种方法,您可以有效地将 System::String 转换为 C .NET 中的 std::string。或者,您可以参阅 Microsoft 文档以获取其他转换选项。
以上是如何在 C .NET 中将 System::String 转换为 std::string?的详细内容。更多信息请关注PHP中文网其他相关文章!