Ejemplo n.º 1
0
 internal Node(T value)
 {
     this.m_value = value;
     this.m_next  = (ConcurrentStack <T> .Node)null;
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Removes all objects from the <see cref="T:System.Collections.Concurrent.ConcurrentStack`1"/>.
 /// </summary>
 public void Clear()
 {
     this.m_head = (ConcurrentStack <T> .Node)null;
 }