Vb.net Pointers

前端 未结 5 2051
执念已碎
执念已碎 2021-01-14 16:20

What is the most similar thing in vb.net to a pointer, meaning like C poinetrs?

I have a TreeView within a class. I need to expose some specific nodes (or leaves) th

5条回答
  •  甜味超标
    2021-01-14 17:07

    If you are using VB the only thing that is really close to a pointer is a IntPtr. If you have access to C# you can use unsafe C# code to do pointer work.

提交回复
热议问题