Esempio n. 1
0
 public void CopyTo(Array array, int index)
 {
     Extensions.CanCopyTo(Count, array, index);
     this.DeprecatedCopyTo(array, index);
 }
Esempio n. 2
0
 public void CopyTo(T[] array, int index)
 {
     Extensions.CanCopyTo(Count, array, index);
     Extensions.CopyTo(this, array, index);
 }
Esempio n. 3
0
 public void SymmetricExceptWith(IEnumerable <T> other)
 {
     Extensions.SymmetricExceptWith(this, other);
 }
Esempio n. 4
0
 public void UnionWith(IEnumerable <T> other)
 {
     Extensions.UnionWith(this, other);
 }
Esempio n. 5
0
 public bool Overlaps(IEnumerable <T> other)
 {
     return(Extensions.Overlaps(this, other));
 }
Esempio n. 6
0
 public bool SetEquals(IEnumerable <T> other)
 {
     return(Extensions.SetEquals(this, other));
 }
Esempio n. 7
0
 public bool IsSupersetOf(IEnumerable <T> other)
 {
     return(Extensions.IsSupersetOf(this, other));
 }
Esempio n. 8
0
 public virtual void IntersectWith(IEnumerable <T> other)
 {
     Extensions.IntersectWith(this, other);
 }
Esempio n. 9
0
 public void ExceptWith(IEnumerable <T> other)
 {
     Extensions.ExceptWith(this, other);
 }
Esempio n. 10
0
 public void CopyTo(T[] array, int index, int count)
 {
     Extensions.CanCopyTo(array, index, count);
     Extensions.CopyTo(this, array, index, count);
 }
Esempio n. 11
0
 public void CopyTo(T[] array)
 {
     Extensions.CanCopyTo(Count, array);
     Extensions.CopyTo(this, array);
 }