コード例 #1
0
        static void Main(string[] args)
        {
            var chess = new Chess();

            chess.Run();
            Console.WriteLine();
        }
コード例 #2
0
        static void Main(string[] args)
        {
            Console.WriteLine("Hello Template Method design pattern!");
            var chess = new Chess();

            chess.Run();
        }
コード例 #3
0
        static void Main(string[] args)
        {
            var chess = new Chess();

            chess.Run();
        }
コード例 #4
0
ファイル: Program.cs プロジェクト: ksnauhwar/DesignPattern
        static void Main(string[] args)
        {
            var game = new Chess(2);

            game.Run();
        }
コード例 #5
0
        public void Test1()
        {
            var game = new Chess();

            Assert.False(string.IsNullOrEmpty(game.Run()));
        }
コード例 #6
0
        static void Main()
        {
            var chess = new Chess();

            chess.Run();
        }