You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
278 B
C#

using MachineServer;
class Program
{
static void Main(string[] args)
{
Thread t = new Thread(() =>
{
Server myserver = new Server("127.0.0.1", 7468);
});
t.Start();
Console.WriteLine("Server Started...!");
}
}