名称“VarPtr”未声明。在旧的 vb 代码中
我有一个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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这并不那么简单,因为 .NET 中的变量是受管理的。要准确地执行您所要求的操作,您需要查看 GCHandle.Alloc 并固定变量,使其无法移动。然后就可以得到它的内存地址。
像这样的(凭记忆):
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):
是的,我找到了答案。新的 VarPtr 函数是
Yes I found the answer.The new VarPtr function is