将 const char* 字符串从非托管传递到托管

发布于 2024-09-26 09:03:24 字数 478 浏览 8 评论 0原文

我有两个通信组件 - 一个是托管的,另一个是非托管的。托管需要从非托管实现检索字符串(相同的字符串或只是一个副本)。我尝试了以下代码。

// Unmanaged code
const char* GetTestName(Test* test)
{
    return test->getName();
}

// Managed wrapper
[DllImport(DllName, EntryPoint = "GetTestName")]
public static extern IntPtr GetTestName(IntPtr testObj);

// API Invocation
IntPtr testName = GetTestName(test);
string testStr = Marshal.PtrToStringAuto(testName);

但是,testStr 的值不是预期的值。有谁知道我在这里做错了什么?任何建议都会非常有帮助。

I have two communicating components - one managed, the other unmanaged. The managed needs to retrieve a character string from the unmanaged implementation (the same string or just a copy). I tried the following code.

// Unmanaged code
const char* GetTestName(Test* test)
{
    return test->getName();
}

// Managed wrapper
[DllImport(DllName, EntryPoint = "GetTestName")]
public static extern IntPtr GetTestName(IntPtr testObj);

// API Invocation
IntPtr testName = GetTestName(test);
string testStr = Marshal.PtrToStringAuto(testName);

But, the value of testStr is not what is expected. Does anyone know what I'm doing wrong here? Any suggestions would be really helpful.

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

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

发布评论

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

评论(2

感性不性感 2024-10-03 09:03:24

你很接近,但你必须使用 PtrToStringAnsi()。 Auto 使用系统默认值,即 Unicode。

You're close but you have to use PtrToStringAnsi(). Auto uses the system default which will be Unicode.

薄情伤 2024-10-03 09:03:24

我建议这样做:

[DllImport(DllName, EntryPoint = "EntryPoint")]
[MarshalAs(UnmanagedType.LPStr)]
public static extern StringBuilder GetTestName(IntPtr testObj);

UnmanagedType.LPStr 适用于字符串和 System.Text.StringBuilder,也许还有其他(我只使用过这两个)。不过,我发现 StringBuilder 的工作更加一致。

有关详细信息,请参阅这篇 MSDN 文章关于各种字符串编组选项。

I'd suggest this, instead:

[DllImport(DllName, EntryPoint = "EntryPoint")]
[MarshalAs(UnmanagedType.LPStr)]
public static extern StringBuilder GetTestName(IntPtr testObj);

UnmanagedType.LPStr works with strings and System.Text.StringBuilder, and perhaps others (I only ever used those two). I've found StringBuilder to work more consistantly, though.

See this MSDN article for further information on the various string marshalling options.

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