pls tell me how to create simple TCP/IP Server and Client to send and recieve text using C#
Well, that's a pretty broad question. You need to look into using:
System.Net.Sock ets.TcpListener
System.Net.Sock ets.TcpClient
To get you started, here's some code I had worked on before for the server.
If you have this running, a client can make a request on the port specified and it will return the text you specify ("Hello World")
To make a client, look up TcpClient. You should be able to find something.
[CODE=cpp]
class TcpIpServer
{
private readonly int port = 48888;
private readonly IPAddress ip = IPAddress.Parse ("127.0.0.1" );
Comment