This project is an implementation of Conway's Game of Life in C#. Conway's Game of Life is a cellular automaton devised by the British mathematician John Horton Conway in 1970. It is a zero-player game, meaning its evolution is determined by its initial state, requiring no further input. The game consists of a grid of cells that can live, die, or multiply based on a few mathematical rules.
- .NET SDK (version 5.0 or later)
- Visual Studio or any C# compatible IDE
-
Clone the Repository:
-
Open the Project:
- Open the solution file
GOLStartUp.sln
in Visual Studio or your preferred IDE.
- Open the solution file
-
Build the Project:
- In Visual Studio, build the solution by selecting
Build
>Build Solution
from the menu, or by pressingCtrl+Shift+B
.
- In Visual Studio, build the solution by selecting
-
Run the Project:
- Start the project by pressing
F5
or selectingDebug
>Start Debugging
.
- Start the project by pressing
- Conway's Game of Life was created by John Horton Conway in 1970.
- Inspiration and information about Conway's Game of Life can be found on Wikipedia.