在 C .NET 中将 System::String 转换为 std::string
在 C .NET 中,将 System::String 转换为std::string 可以使用 Microsoft .NET Framework 提供的封送功能来实现。
要将 System::String 转换为 std::string,可以使用 msclr 提供的 marshal_as 方法::interop::marshal_context 类。此方法将托管字符串作为输入并返回相应的标准字符串。
以下是如何将 System::String 转换为 std::string 的示例:
<code class="cpp">#include <string> #include <msclr\marshal_cppstd.h> using namespace System; int main(array<System::String ^> ^args) { System::String^ managedString = "test"; msclr::interop::marshal_context context; std::string standardString = context.marshal_as<std::string>(managedString); return 0; }</code>
This代码片段导入必要的标头,声明一个托管字符串,然后使用 marshal_as 方法将托管字符串转换为标准字符串。
需要注意的是,msclr::interop 命名空间最近才可用.NET 的版本。如果您使用的是旧版本,则可以改用 msclr::interop::marshal_as_string 方法。
有关在托管代码和非托管代码之间转换各种其他类型的更多信息,请参阅以下 MSDN 文章: https://docs.microsoft.com/en-us/dotnet/framework/unmanagement-api/interop/marshaling-data-with-platform-invoke
以上是如何在 C .NET 中将 System::String 转换为 std::string?的详细内容。更多信息请关注PHP中文网其他相关文章!