I am writing a sudoku-type game, and I want to have a random generator call a game from a list of saved games. Should I use a struct, a class, or something else?
The only difference between a struct and a class, is the default access level. A struct's default access level is public, while the latter's is private.