예제 #1
0
 /// <summary>
 /// Method that removes a wire from the circuit
 /// </summary>
 /// <param name="wire"></param>
 public void RemoveWire(IWire wire)
 {
     wire.Dispose();
     _Wires.Remove(wire);
 }