VB.Net equivalent of "This" for Shared Methods – Asp.net
Public Class MyLongClassName Public Shared Name As String = "Ana" Public Shared Function GetName() As String Dim Name As String = "Beta" '... this is toooooo long Return MyLongClassName.Name End Function Public Shared Function GetName() As String Dim Name As…