Invece di typeof(Foo).IsValueType vorrei scrivere in C# 2.0 TypeOf<Foo>.IsValueType. Implementate voi la classe TypeOf<T>, ovviamente senza utilizzare reflection.
For my non-Italian readers, if any :-) How would you implement in C# 2.0 the TypeOf<T> class, obviously without using any reflection mechanism, so that to be able to write TypeOf<Foo>.IsValueType instead of typeof(Foo).IsValueType?