Using the Stack class in .NET Part 2 – Push strings into the stack
1 min read

Using the Stack class in .NET Part 2 – Push strings into the stack

Now let’s push some strings into the stack!

numbers.Push("One");
numbers.Push("Two");
numbers.Push("Three");

There we go! In the next post we’ll Peek and pop elements in our stack.

Leave a Reply