System.Collections.Generic.List.Remove(WireDestConfig)

Here are the examples of the csharp api System.Collections.Generic.List.Remove(WireDestConfig) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

19 Source : SwitchHandler.cs
with GNU General Public License v3.0
from freezy

public void RemoveWireDest(string destId)
		{
			foreach (var wire in _wires) {
				if (wire.IsHardwareRule && wire.DeviceItem == destId) {
					_wires.Remove(wire);
					return;
				}
			}
		}