Hi there, new PGD looks great!

I'm trying to get started with Oxygene. However, I don't like .NET so I installed Mono framework. There is wrote something about compiling for Mono. And everything works fine with {MONOFRAMEWORK}. But, I need GTK# so I want replace {MONOFRAMEWORK} to {MONO} to get this. And... The compiler starts crying:
Code:
Unable to load assembly C:\(...)\mscorlib.dll
So, the question is: how to use GTK# with Mono and Oxygene? Delphi Prism wiki is wrong...?





And theres a bonus question! List, stack and queues are in the same unit, I am right? So, why I can't use stacks and queues?
[pascal]
var lista := new list <integer>; //OK
var stos := new stack <integer>; //ERROR
var kolejka := new queue <integer>; //ERROR
[/pascal]


Thanks for help.