J
John Kraft
I have this line of code:
Dim groups As String = FacAuthentication.GetSystems(txtULID.Text)
I get an error saying that I cannot call this because it is not shared.
The declaration for the function is:
Public Shared Function GetSystems(ByVal username As String) As String()
What does this mean? I'm new to VB, but very familiar with C/C++/C#.
John
Dim groups As String = FacAuthentication.GetSystems(txtULID.Text)
I get an error saying that I cannot call this because it is not shared.
The declaration for the function is:
Public Shared Function GetSystems(ByVal username As String) As String()
What does this mean? I'm new to VB, but very familiar with C/C++/C#.
John