If you're trying to create an instance of stringStack, you're missing
the parenthesis:
stringStack = System.Collections.Generic.Stack of string()
On Jan 10, 1:32 am, Christer Nilsson <janchrister.nils...@gmail.com>
wrote:
> I tried to use the collection dll C5 (
http://www.itu.dk/research/c5)
> from Boo
> but run into a problem, actually already with Microsoft's own
> framework:
> stack = System.Collections.Stack() # compiles and executes
> stringStack = System.Collections.Generic.Stack of string # does not
> compile
> Christer