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

this() public method

Represents the entry at the specified index of the .
is outside the valid range of indexes for the collection.
public this ( int index ) : Descriptor
index int The zero-based index of the entry to locate in the collection.
return Descriptor
        public Descriptor this[int index]
        {
            get {
                return ((Descriptor)(List[index]));
            }
            set {
                List[index] = value;
            }
        }