Hi,
how can i get the type of of an object (with GetType
) from within the object itself?
Something like GetType(Me)
(that, of course, doesn't work).
Thanks.
Hi,
how can i get the type of of an object (with GetType
) from within the object itself?
Something like GetType(Me)
(that, of course, doesn't work).
Thanks.
Me.GetType()
should work. If it doesn't, then please say in what way it doesn't.