コード例 #1
0
ファイル: Program.cs プロジェクト: lrymal/Self-Study-C-Sharp
 static void Main(string[] args)
 {
     RockPaperScissorsGame game = new RockPaperScissorsGame();
     game.Play();
 }
コード例 #2
0
ファイル: Program.cs プロジェクト: chrissc6/RPS
        static void Main(string[] args)
        {
            var rpsg = new RockPaperScissorsGame();

            rpsg.Play();
        }