Hi, I have a parent class (Foo) with shared methods. It is MustInherit. Bar and Baz classes inherits from Foo. I will do something like that:
Dim baz as New Baz()
Dim bar as New Bar()
baz.sharedMethod()
bar.sharedMethod()
Within of Foo's sharedMethod(), I need to know who (class name) called it. So, using the above example, it would be, respectively, Baz and Bar.
Did you understand? Sorry about my english and thank you.