Hi

I'm rewriting some of my libraries in C#.

I've read the manuals and tutorials but I cannot make it work.
I specifically have the declaration of a node of a link list

ie:

Code:
class  Node
    {
        private int id;
        (etc...)
                    
      Node*  next;  

    }
I tried all combinations but I cannot make it work.
Could you plz tell me how it is done in this particular example?

Thanks