ICSharpCode.USBlib.DescriptorCollection.Remove C# (CSharp) Method

Remove() public method

Removes a specific from the .
is not found in the Collection.
public Remove ( Descriptor val ) : void
val Descriptor The to remove from the .
return void
        public void Remove(Descriptor val)
        {
            List.Remove(val);
        }