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

Insert() public method

Inserts a into the at the specified index.
public Insert ( int index, Descriptor val ) : void
index int The zero-based index where should be inserted.
val Descriptor The to insert.
return void
        public void Insert(int index, Descriptor val)
        {
            List.Insert(index, val);
        }