SupportClass.SetSupport.RetainAll C# (CSharp) Method

RetainAll() public method

Removes all the elements that aren't contained into the specified collection.
public RetainAll ( CollectionSupport collection ) : bool
collection CollectionSupport The collection used to verify the elements that will be retained.
return bool
        public virtual bool RetainAll(CollectionSupport collection)
        {
            return this.RetainAll((System.Collections.ICollection) collection);
        }

Same methods

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