xpidea.neuro.net.patterns.PatternsCollection.AddRange C# (CSharp) Méthode

AddRange() public méthode

Copies the elements of an array to the end of the xpidea.neuro.net.patterns.PatternsCollection .

public AddRange ( Pattern value ) : void
value Pattern /// An array of type containing the objects to add to the collection. ///
Résultat void
        public void AddRange(Pattern[] value)
        {
            for (var i = 0; (i < value.Length); i = (i + 1))
            {
                Add(value[i]);
            }
        }

Same methods

PatternsCollection::AddRange ( PatternsCollection value ) : void