0
can i have a codes for stacks?
2 Answers
0
sure
0
If you mean the Stack data structure there's one in System.collections.stack
https://msdn.microsoft.com/en-us/library/system.collections.stack(v=vs.110).aspx
If you wanted to write your own, you could with an class exposing push and pop methods adding and removing from a local array variable



