ICSharpCode.USBlib.BusCollection.Contains C# (CSharp) Method

Contains() public method

Gets a value indicating whether the contains the specified .
public Contains ( Bus val ) : bool
val Bus The to locate.
return bool
        public bool Contains(Bus val)
        {
            return List.Contains(val);
        }