Ejemplo n.º 1
0
 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);
     }
 }
Ejemplo n.º 2
0
 public void Insert(int index, ErrorDiffusionElement <TInput1, TInput2> item)
 {
     throw new NotSupportedException("Read-only collection.");
 }
Ejemplo n.º 3
0
 public int IndexOf(ErrorDiffusionElement <TInput1, TInput2> item)
 {
     throw new NotImplementedException();
 }
Ejemplo n.º 4
0
 public bool Remove(ErrorDiffusionElement <TInput1, TInput2> item)
 {
     throw new NotSupportedException("Read-only collection.");
 }
Ejemplo n.º 5
0
 public bool Contains(ErrorDiffusionElement <TInput1, TInput2> item)
 {
     throw new NotImplementedException();
 }