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

IndexOf() public method

Returns the index of a in the .
public IndexOf ( Bus val ) : int
val Bus The to locate.
return int
        public int IndexOf(Bus val)
        {
            return List.IndexOf(val);
        }