Ejemplo n.º 1
0
 public MyDebugWorkTracker(uint historyLength = 10)
 {
     this.m_lock          = new SpinLockRef();
     this.m_historyLength = historyLength;
     this.History         = new MyQueue <T>((int)this.m_historyLength);
 }