20 lines
348 B
C#
20 lines
348 B
C#
using System.Net;
|
|
using System.Net.Sockets;
|
|
|
|
namespace Server
|
|
{
|
|
class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
Communication communication = new Communication(new TcpListener(IPAddress.Any, 5555));
|
|
communication.Start();
|
|
|
|
while (true)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|