xpidea.neuro.net.patterns.PatternsCollection.Insert C# (CSharp) Method

Insert() public method

Inserts a xpidea.neuro.net.patterns.Pattern into the xpidea.neuro.net.patterns.PatternsCollection at the specified index.

public Insert ( int index, Pattern value ) : void
index int The zero-based index where should be inserted.
value Pattern
return void
        public void Insert(int index, Pattern value)
        {
            List.Insert(index, value);
        }