Vb.net Pointers

前端 未结 5 2011
执念已碎
执念已碎 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:24

    If you're looking to pass something back from a subroutine you can pass it by reference - as in "ByRef myParamter as Object".

    Best answer depends, to some degree, on what you're trying to do.

提交回复
热议问题