Files
Proftaak-RH-B4/Server/Program.cs
2020-09-23 15:22:45 +02:00

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)
{
}
}
}
}