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

AddRange() public method

Copies the elements of an array to the end of the .
public AddRange ( Descriptor val ) : void
val Descriptor /// An array of type containing the objects to add to the collection. ///
return void
        public void AddRange(Descriptor[] val)
        {
            for (int i = 0; i < val.Length; i++) {
                this.Add(val[i]);
            }
        }

Same methods

DescriptorCollection::AddRange ( DescriptorCollection val ) : void