コード例 #1
0
 public ThreadQueue(WaitHandleBase handle)
 {
     this.head   = null;
     this.tail   = null;
     this.handle = handle;
 }
コード例 #2
0
 public ThreadQueue()
 {
     this.head   = null;
     this.tail   = null;
     this.handle = null;
 }