C
cmay
Is this something you are not allowed to do?
I basically want to create an instance of a generic class where the
type T is not know at compile time.
e.g.
dim s as System.Type = GetMyType()
dim o as MyObj(Of s)
I have not found a way to do this, so I am guessing it is not possible.
I basically want to create an instance of a generic class where the
type T is not know at compile time.
e.g.
dim s as System.Type = GetMyType()
dim o as MyObj(Of s)
I have not found a way to do this, so I am guessing it is not possible.