class Program {
static void Main(string[] args) {
TcpListener tcpListener = new TcpListener(IPAddress.Any, 8080);
tcpListener.Start();
}
}
Blog
class Program {
static void Main(string[] args) {
TcpListener tcpListener = new TcpListener(IPAddress.Any, 8080);
tcpListener.Start();
}
}