コード例 #1
0
ファイル: Program.cs プロジェクト: elangovana/hacker-projects
        private static void Main(string[] args)
        {
            IProblemCommand command = new CommandProblemShortestReach();

            command.Run();
            Console.ReadLine();
        }
コード例 #2
0
ファイル: Program.cs プロジェクト: elangovana/hacker-projects
 private static void Main(string[] args)
 {
     IProblemCommand command = new CommandProblemShortestReach();
     command.Run();
     Console.ReadLine();
 }