I want to reverse the stack so element at TOP should be at zero and vice versa. I know it may not be a right operation to do this but I want to do this. And if not I want to know why this not works
When I do
List<string> MyList = new List<string>();
MyList.Reverse()
It works. But not this one.
Stack<string> MyStack = new Stack<string>();
MyStack.Reverse()
Any Idea/ Solution??
Thanks & Regards,
Ganesh