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