Scenario:
FOLDER: Connection
public class Connection
{
public void ServerConnect ()
{
. . . .
}
}
FOLDER: Client
public void Connect
{
//In here, I want to implement the method from ServerConnect
}
How can I call ServerConnect?