R
Random
Does anyone here know how to get the type from a variable representing a
non-instantiated class? Something like this....
Dim a As MyClass
Dim t As System.Type = GetType(a)
Interestingly, GetType(MyClass) works just fine, but using a variable in
it's place will not.
non-instantiated class? Something like this....
Dim a As MyClass
Dim t As System.Type = GetType(a)
Interestingly, GetType(MyClass) works just fine, but using a variable in
it's place will not.