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

Remove() public method

Removes a specific xpidea.neuro.net.patterns.Pattern from the xpidea.neuro.net.patterns.PatternsCollection .

is not found in the Collection.
public Remove ( Pattern value ) : void
value Pattern /// The to remove from the /// . ///
return void
        public void Remove(Pattern value)
        {
            List.Remove(value);
        }