示例#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;
 }