Ejemplo n.º 1
0
 // Methods
 public ReaderWriterCount(bool fIsReentrant)
 {
     if (fIsReentrant)
     {
         rc = new RecursiveCounts();
     }
 }
Ejemplo n.º 2
0
 public ReaderWriterCount(bool isReentrant)
 {
   ThreadId = -1;
   if (isReentrant)
     Rc = new RecursiveCounts();
 }