コード例 #1
0
ファイル: Program.cs プロジェクト: mrucker/Studies.NET
 public static void Main(string[] args)
 {
     var helloWorld = new ApplicationHelloWorld();
     Console.WriteLine(helloWorld.SayHelloWorld());
     Console.Write("Press any key to continue...");
     Console.ReadKey();
 }
コード例 #2
0
        public static void Main(string[] args)
        {
            var helloWorld = new ApplicationHelloWorld();

            Console.WriteLine(helloWorld.SayHelloWorld());
            Console.Write("Press any key to continue...");
            Console.ReadKey();
        }