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