M
manjub
Hi,
I have a question regarding a reference to tracking handle.
In older C++ if I write below code would add new node to the linked
list.
Object* o = linkList->FirstNode;
while ( o != null ) {
o = o->nextNode;
}
o = newNode;
However in Visual C++ 2005.NET, I wrote the following code and it does
not add a new node to linked list.
Object^ o = linkedList->FirstNode;
while ( o != nullptr ) {
o = o->nextNode;
}
o = newNode;
Is there a way to correct this. Am I missing something?
Regards
I have a question regarding a reference to tracking handle.
In older C++ if I write below code would add new node to the linked
list.
Object* o = linkList->FirstNode;
while ( o != null ) {
o = o->nextNode;
}
o = newNode;
However in Visual C++ 2005.NET, I wrote the following code and it does
not add a new node to linked list.
Object^ o = linkedList->FirstNode;
while ( o != nullptr ) {
o = o->nextNode;
}
o = newNode;
Is there a way to correct this. Am I missing something?
Regards