Coding convention

When one calls a shared method of the super class, what’s the best option in terms of understandability for other readers of the source code:

DoSomething() Super.DoSomething() SuperclassName.DoSomething()

I’d say the last one. It both identifies the location and that it’s a Shared Method.

Yes, this make sense. Thanks!