vote up 0 vote down star

How to create simple C# Binary socket server (Not WCF!)

Who knows the Simplest Way To Open and Use a Socket in C# (Not with WCF)?


What do I need? I need -

  • Open Source Libs
  • Tutorials
  • Blog posts/Articles


Vote!) one who will take at least (0+25) votes wins

flag

77% accept rate
This is not a contest on so. – Daniel A. White Nov 2 at 13:18
Its a contest for publicly approved answer) the point is I do not know the correct answer. No one is going to count lines. So let's select correct answer using votes (this question do not suppows wrong answers) – Ole Jak Nov 2 at 15:11

2 Answers

vote up 5 vote down check

Use the standard .NET TcpClient and TcpListener classes -- they are trivial to use and do what you want.

If you want to use open source only, the Mono implementation of these classes works perfectly.

link|flag
vote up -2 vote down

Probably use winsock.

here is what google found:

Winsock with c#

And there is a lot more out there...

link|flag
Don't use an activex control! Theres built in classes. – Daniel A. White Nov 2 at 11:48
Have a look ato System.Net.Sockets namespace – Geoff Nov 2 at 11:49
He asked for the simplest way. – Dani Nov 2 at 11:50
Um, its not any simpler with the built in classes? – Daniel A. White Nov 2 at 12:00
Actually it (link to some forum post) looks like simple and good explanation. But ACTIVEX... Not Open Source... not Cross platform... and sum of code lines will probably lose to TcpClient and TcpListener ... – Ole Jak Nov 2 at 12:06

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.