D
David
for example:
Namespace MyNamespace
Public Class MyClass
Public Sub mySub()
Console.WriteLine("Executing..." & MyCurrentSub())
' The MyCurrentSub is just an example of a pseudocode, that will
be replaced with the real function name
' or whatever I need to get the current Method, the output will
be: "Executing... MyNamespace.MyClass.mySub"
End Sub
End Class
End Namespace
Thanks
Namespace MyNamespace
Public Class MyClass
Public Sub mySub()
Console.WriteLine("Executing..." & MyCurrentSub())
' The MyCurrentSub is just an example of a pseudocode, that will
be replaced with the real function name
' or whatever I need to get the current Method, the output will
be: "Executing... MyNamespace.MyClass.mySub"
End Sub
End Class
End Namespace
Thanks