在 C# csharp 中使用来自 ocx 控件的指针
编辑: 我正在使用 C# 中的 ocx 控件。该控件具有包含数据缓冲区的长度和指向该缓冲区的指针的属性。如何通过 C# 中的某个点来访问/获取/使用该数据。我正在使用 Visual Studio 2008。
我使用 c# 中的 .ocx 控件。该 .ocx 有一个属性,其中包含数据缓冲区的 len 和指向数据缓冲区的指针。我如何在 C# 中使用该指针获取数据?我使用 VS C# 2008
Edit:
I'm working with an ocx control in C#. This contrl has properties which contain the length of a data buffer and a pointer to that buffer. How can access/get/use that data with possibly a point in C#. I'm using Visual Studio 2008.
i work with .ocx control in c#. That .ocx have a properties which contains len of data buffer and pointer to data buffer. How i can get data, using that pointer in c#? I use VS C# 2008
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您没有提供具体信息,因此这是根据您的信息进行的猜测。您可以在此处找到示例< /a>.我将引用(并简化)相关部分:
编辑:用您的信息:
至于到达事件:
You didn't give exact details, so this is a guess based on your info. You can find an example here. I'll quote (and simplify) the relevant parts:
EDIT: With your info:
As for the arrival event:
检查一下这个。 如何通过在 C# 中使用 p/invoke 指向数组的指针?
check this one out. How can I pass a pointer to an array using p/invoke in C#?