SupportClass.SetSupport.ContainsAll C# (CSharp) 메소드

ContainsAll() 공개 메소드

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.
리턴 bool
        public virtual bool ContainsAll(CollectionSupport collection)
        {
            return this.ContainsAll((System.Collections.ICollection) collection);
        }

Same methods

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