How do I pass field of type System.Type... Can't type
private t as New Type

, thus state is always lost — any ideas ? I need to pass Type to re-construct instance from it.
Spasibo.
This way I gonna loose it — cos I have not storage for it....
M'kay — can you provide me with a small exmaple of how do I pass System.Type ?
Something like:
Dim o as MyClass
o.Type = GetType(...)
and after
Dim t as Type = o.Type — that won't work
ты хочешь динамически создавать объекты из неизвестного заранее типа?
тогда так:
Type t = GetType(...)
object oNew = Activator.CreateInstance( t );
System.Type — это нормальный клаcc