[.net] Sending Information Over the Internet?

Started by
5 comments, last by DaWanderer 18 years, 11 months ago
Im using C# and want to know the best way to find out the best way for 2 programs to communicate over the internet.
Advertisement
[google] for "c# sockets".
Communicate what?

In time the project grows, the ignorance of its devs it shows, with many a convoluted function, it plunges into deep compunction, the price of failure is high, Washu's mirth is nigh.

Communicate text, images, video?
Use a web server.
I know direct play has been deprecated, I was wondering if anyone had any other freebie libaries / tutorials on writing game client / server stuff? (May be that is what original poster was going for?)
Anything posted is personal opinion which does not in anyway reflect or represent my employer. Any code and opinion is expressed “as is” and used at your own risk – it does not constitute a legal relationship of any kind.
If it's just sending simple text, open up a TCP/IP Socket connection between the two programs and wrap a NetworkStream around the connections.

This topic is closed to new replies.

Advertisement