コード例 #1
0
ファイル: Parser.cs プロジェクト: 0aix/Programming-Sources
 public Parser(int id)
 {
     KeyID  = id;
     conn   = LoLKeep.GetConnection();
     thread = new Thread(Run);
     thread.Start();
 }
コード例 #2
0
ファイル: Worker.cs プロジェクト: 0aix/Programming-Sources
 public static void Start()
 {
     conn   = LoLKeep.GetConnection();
     run    = true;
     thread = new Thread(Run);
     thread.Start();
 }