SupportClass.SetSupport.ContainsAll C# (CSharp) Méthode

ContainsAll() public méthode

Verifies if all the elements of the specified collection are contained into the current collection.
public ContainsAll ( CollectionSupport collection ) : bool
collection CollectionSupport The collection used to extract the elements that will be verified.
Résultat bool
        public virtual bool ContainsAll(CollectionSupport collection)
        {
            return this.ContainsAll((System.Collections.ICollection) collection);
        }

Same methods

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