h1.post-title { color:orange; font-family:verdana,Arial; font-weight:bold; padding-bottom:5px; text-shadow:#64665b 0px 1px 1px; font-size:32px; } -->

Pages

Call Class Function in Module

Call Class Function in Module

In Module(S)
Public Function ResultValue(ByVal x As Integer, ByVal y As Integer) As String
        Dim CHelper As CHelper = New CHelper()
        Return "The Result is :" & CHelper.Add(x, y)
    End Function

In Class file
Public Shared Function ResultValue(ByVal x As Integer, ByVal y As Integer) As String
        Return "The Module Result" & Module1.Add(x, y)
    End Function