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