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
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.