C# Network engine

Started by
2 comments, last by nPawn 17 years, 4 months ago
did a few google searches but cant seem to really find anythign promissing, just looking for a network sdk in C#
Indy to Pro: Journeyhttp://phiendstudios.blogspot.com
Advertisement
Since you asked, I don't feel in the slightest guilty for linking to mine, or you can look at other articles in the same section if you don't like mine.
One simple solution is to use the system sockets library, or the tcpclient or udpclient wrapper classes, and then put your own state management on top of that. Just using serialization would be the easiest option, although perhaps not the most efficient.
enum Bool { True, False, FileNotFound };
I've been using the Lidgren network library lately, it's a C# wrapper that has reliable UDP and some other nice features. You can find it here:

http://www.lidgren.net/wiki/doku.php?id=lidgren.library.network

This topic is closed to new replies.

Advertisement