Ejemplo n.º 1
0
 public void ForEachInColl(int x,receiveDataMember closure)
 {
     for(int y = 0; y < data.GetLength(1); y++){
         closure(ref data[y, x]);
     }
 }
Ejemplo n.º 2
0
 public void ForEachInRow(int y,receiveDataMember closure)
 {
     for(int x = 0; x < data.GetLength(0); x++){
         closure(ref data[y, x]);
     }
 }
Ejemplo n.º 3
0
 public void ForEach(receiveDataMember closure)
 {
     for(int y = 0; y < data.GetLength(1); y++){
         for(int x = 0; x < data.GetLength(0); x++){
             closure(ref data[y,x]);
         }
     }
 }