名称“VarPtr”未声明。在旧的 vb 代码中

发布于 2024-12-13 13:57:47 字数 233 浏览 3 评论 0原文

我有一个VB中的旧代码。现在我将其转换为vb.net。代码中有一行

将 pCParameters 调暗为整数

pCParameters = VarPtr(参数)

当我执行代码时,发生错误

未声明名称“VarPtr”。

vb.net 不支持 VarPtr。那么我如何替换它。

I have a old code in VB.Now I convert it into vb.net.There is a line in a code

Dim pCParameters As Integer

pCParameters = VarPtr(Parameters)

When I execute code the error occure that

Name 'VarPtr' is not declared.

VarPtr not supported in vb.net.So how I replace it.

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

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

发布评论

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

评论(2

束缚m 2024-12-20 13:57:47

这并不那么简单,因为 .NET 中的变量是受管理的。要准确地执行您所要求的操作,您需要查看 GCHandle.Alloc 并固定变量,使其无法移动。然后就可以得到它的内存地址。
像这样的(凭记忆):

GCHandle handle = GCHandle.Alloc(pCParameters , Pinned )
IntPtr ptr = handle.AddressOfPinnedObject

This is not as straight forward because your variables in .NET are managed. To do exactly what you are asking you need to look at GCHandle.Alloc and pin the variable so it cannot be moved. Then you can get its memory address.
Something like this (from memory):

GCHandle handle = GCHandle.Alloc(pCParameters , Pinned )
IntPtr ptr = handle.AddressOfPinnedObject
玻璃人 2024-12-20 13:57:47

是的,我找到了答案。新的 VarPtr 函数是

Public Function VarPtr(ByVal e As Object) As Integer
Dim GC As GCHandle = GCHandle.Alloc(e, GCHandleType.Pinned)
Dim GC2 As Integer = GC.AddrOfPinnedObject.ToInt32
GC.Free()
Return GC2

Yes I found the answer.The new VarPtr function is

Public Function VarPtr(ByVal e As Object) As Integer
Dim GC As GCHandle = GCHandle.Alloc(e, GCHandleType.Pinned)
Dim GC2 As Integer = GC.AddrOfPinnedObject.ToInt32
GC.Free()
Return GC2
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文