Exemplo n.º 1
0
 public T Swap(Array2DIndex index, T newValue)
 {
     return(Swap(index.X, index.Y, newValue));
 }
Exemplo n.º 2
0
 public int CalculateRawArrayIndex(Array2DIndex index)
 {
     return(CalculateRawArrayIndex(index.X, index.Y));
 }
Exemplo n.º 3
0
 public T this[Array2DIndex index]
 {
     get { return(this[index.X, index.Y]); }
     set { this[index.X, index.Y] = value; }
 }