Ejemplo n.º 1
0
 private int[] GetD1Adapter(int[,,] d3Array)
 {
     return(d3Array.Cast <int>().ToArray());
 }
Ejemplo n.º 2
0
 private static string RowOrderJoin(int[,,] array) => string.Join(", ", array.Cast <int> ());
Ejemplo n.º 3
0
 protected bool BoardIsFull()
 {
     return(board.Cast <int>().All(c => c > 0));
 }