Exemple #1
0
 // stack maken uit een MyList
 public override Stack <double> makeStack()
 {
     mylistStack.Push(data);
     if (next != null)
     {
         next.makeStack();
     }
     return(mylistStack);
 }