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