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.
|
using System.Threading;
|
|
|
|
namespace KevServer
|
|
{
|
|
class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
DrawServer drawerServer = new DrawServer();
|
|
drawerServer.Start();
|
|
|
|
// 先占位,防止进程退出
|
|
while (true)
|
|
{
|
|
Thread.Sleep(3000);
|
|
}
|
|
}
|
|
}
|
|
}
|