Projektdatei committed
This commit is contained in:
14
src/Start.cs
Normal file
14
src/Start.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
using System.Threading;
|
||||
using System.Net.Sockets;
|
||||
|
||||
public class Start
|
||||
{
|
||||
public static void Main()
|
||||
{
|
||||
TcpClient client = new TcpClient("localhost", 9999);
|
||||
Program program = new Program(client);
|
||||
program.StartThreads();
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user