Push a stack onto another stack

Viewed 4028

In C#, is there a way to push one Stack onto another Stack without iterating through the stack elements? If not, is there a better data structure I should be using? In Java you can do:

stack1.addAll(stack2)

I was hoping to find the C# analogue...

4 Answers
Related