If you can't use Me. in a non-instance method, how would you use properties/functions from a base class in a Shared method?
For example, ClassB inherits from ClassA
ClassB has a Shared Method DoWork();
ClassA has a ReadOnly Property SecurityKey
How do I …
Public Sub DoWork()
Dim test as String = Me.SecurityKey
End Sub