Is there a way to get the instance's class name with VB.NET?
+3
A:
Try the following
Dim name = Me.GetType().Name
Or for any instance
Dim name = theObject.GetType().Name
JaredPar
2010-08-20 18:33:07