I’m looking for a tutorial/example for writing a client application and a server application.
I wish to send the server commands to run, and have the server run them.
I’m looking for a tutorial/example for writing a client application and a server application.
Share
Check out TcpListener (server) and TcpClient (client) on MSDN, examples included.
As for sending commands, you can simple send strings and parse them at the other end. But if you want to go a step further, look up the Command design pattern.