M
mahmut arslan
is it possible in VB.NET to declare a variable whose type
will be clear in runtime e.g.
dim ctrl as LinkButton
dim tp as Type = Type.GetType(Control)
dim ctrl_dynamic as tp
or something like this.
(I know, the code above is not working)
will be clear in runtime e.g.
dim ctrl as LinkButton
dim tp as Type = Type.GetType(Control)
dim ctrl_dynamic as tp
or something like this.
(I know, the code above is not working)