, I'am a bit Confused about the meaning of 'Async' while Using multiple Clients Connections ,
static void acceptCall(IAsyncResult AR)
{
Socket _Socket = ServerSoskcet.EndAccept(AR);
_Clients.Add(_Socket);
ServerSoskcet.BeginAccept(new AsyncCallback(acceptCall, null));
}
I didnt Fully Understand the code or actually the concept of Multiple Clients , can someone explain how to handle multiple clients connections using Sockets