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
285 B
C#

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