merge Develop into master #9

Merged
SemvdH merged 66 commits from develop into master 2020-09-25 14:51:29 +00:00
2 changed files with 31 additions and 12 deletions
Showing only changes of commit a52f1ea7ed - Show all commits

31
Client/Client.cs Normal file
View File

@@ -0,0 +1,31 @@
using System;
using System.Net.Sockets;
namespace Client
{
class Client
{
private TcpClient client;
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
//connect fiets
}
public Client() : this("localhost", 5555)
{
}
public Client(string adress, int port)
{
this.client = new TcpClient();
client.BeginConnect(adress, 15243, new AsyncCallback(OnConnect), null);
}
}
}

View File

@@ -1,12 +0,0 @@
using System;
namespace Client
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
}
}
}