Is there any way to declare a structure in VB like C...
struct Tree {
struct Tree *LeftPtr;
struct Tree *RightPtr;
int data;
}
One of the component variables points to itself.
Declaring a pointer to itself...
Is it possible in VB?
Your help is really appreciated...
