I'm using Visual C# to program an RPN calculator using Stack. Problem is I don't know how to do this. I'm using System.Collections.Generic, but
Stack s = new Stack();
generates the error "Using the generic type 'System.Collections.Generic.Stack' requires '1' type arguments"
I'm pretty clueless here. Thanks for the help.