SupportClass.SetSupport.RemoveAll C# (CSharp) Method

RemoveAll() public method

Removes all the elements contained into the specified collection.
public RemoveAll ( CollectionSupport collection ) : bool
collection CollectionSupport The collection used to extract the elements that will be removed.
return bool
        public virtual bool RemoveAll(CollectionSupport collection)
        {
            return this.RemoveAll((System.Collections.ICollection) collection);
        }

Same methods

SupportClass.SetSupport::RemoveAll ( System collection ) : bool