コード例 #1
0
 public static void PrintPuzzle(cPuzzle puzzle)
 {
     Console.WriteLine(puzzle.DisplayString());
     Console.Write("Press Any Key: ");
     Console.ReadKey();
     Console.WriteLine();
 }
コード例 #2
0
ファイル: cTestPuzzle.cs プロジェクト: rosco-y/csGenerator
 public cTestPuzzle()
 {
     _puzzle = new cPuzzle();
 }