xpidea.neuro.net.patterns.PatternsCollection.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 ) : Pattern
index int /// The zero-based index of the entry to locate in the collection. ///
return Pattern
        public Pattern this[int index]
        {
            get { return ((Pattern) (List[index])); }
            set { List[index] = value; }
        }