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