This commit is contained in:
fabjuuuh
2020-09-23 12:11:32 +02:00
parent dcae307754
commit 748f7eed46
5 changed files with 107 additions and 11 deletions

View File

@@ -1,4 +1,6 @@
using System;
using System.Net;
using System.Net.Sockets;
namespace Server
{
@@ -6,7 +8,13 @@ namespace Server
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
Communication communication = new Communication(new TcpListener(IPAddress.Any, 5555));
communication.Start();
while (true)
{
}
}
}
}