Using the Stack class in .NET Part 1 – Create the stack
1 min read

Using the Stack class in .NET Part 1 – Create the stack

Let’s follow this documentation from Microsoft here.

First we create the Stack.

Stack<string> numbers = 
     new Stack<string>();

Great! In the next post we’ll push some strings into the stack.

Leave a Reply