Exemplo n.º 1
0
 public void Add(ref ConnectionThread c)
 {
     Connections.Add(c);
     Console.WriteLine("Added a thread to the pool - now count: " + Connections.Count);
 }
Exemplo n.º 2
0
 public void Remove(ref ConnectionThread c)
 {
     Connections.Remove(c);
     Console.WriteLine("Removed a thread from the pool - now count: " + Connections.Count);
 }