Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've got a simple server (e.g. echo) written in Java. It uses ServerSocket class for networking purposes. I've got a client in C++. it uses WinSock2.h. (unfourtantly, I completely don't know C++) They both run on one PC.

I'd like to use a C# server instead of Java one. It should be easy - In Java networking takes about one screen of code, so, I guess, it's not going to take more in C#.

I've never worked with networking applications before, so i don't have an idea what class and what preferences I should use in .net (instead of ServerSocket). I don't need a complete solution, but please, give me a clue. I can provide any additional information if needed.

Thank u advance, sorry 4 my English.

share|improve this question

2 Answers

up vote 1 down vote accepted

Have a look at the TcpListener Class.

TcpListener Class

Listens for connections from TCP network clients.

MSDN has a complete example how to use set up a simple TCP server using this class.

share|improve this answer
Thank u much, this is EXACTLY what I've been looking for. – Roman Dec 5 '10 at 10:20

Use System.Net.Socket

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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