Ejemplo n.º 1
0
 private static void DisplayGrid(LifeGrid lifeGrid, char truechar, char falsechar)
 {
     foreach (string row in lifeGrid.GetRows(truechar, falsechar))
     {
         Console.WriteLine(row);
     }
 }