Is there a way for an routine to get its method name, class name, assembly name, etc.
For example:
The result would be a msgbox with the following info:
Method : MyName
Class : Form1
Assembly: WindowsApplication1.exe
For example:
Visual Basic:
Public Class Form1
Public Sub MyName()
'Code to return names into a msgbox
End Sub
End Class
The result would be a msgbox with the following info:
Method : MyName
Class : Form1
Assembly: WindowsApplication1.exe