public void CopyTo(ErrorDiffusionElement <TInput1, TInput2>[] array, int arrayIndex) { for (int i = arrayIndex; i < array.Length; i++) { array[i] = new ErrorDiffusionElement <TInput1, TInput2>(_indeces, _errors, i); } }
public void Insert(int index, ErrorDiffusionElement <TInput1, TInput2> item) { throw new NotSupportedException("Read-only collection."); }
public int IndexOf(ErrorDiffusionElement <TInput1, TInput2> item) { throw new NotImplementedException(); }
public bool Remove(ErrorDiffusionElement <TInput1, TInput2> item) { throw new NotSupportedException("Read-only collection."); }
public bool Contains(ErrorDiffusionElement <TInput1, TInput2> item) { throw new NotImplementedException(); }