【C#】コンソールアプリ ~ Hello World ~


■ サンプル

例1:シンプルなHello World

using System;

namespace hello
{
  class HelloWorld 
  {
    static void Main() 
    {
      Console.WriteLine("Hello World!");

      // Keep the console window open in debug mode.
      Console.WriteLine("Press any key to exit.");
      Console.ReadKey();
    }
  }
}

■ 補足:コマンドライン引数を取得するには...

static void Main(string[] args)
{
  for (int i = 0; i < args.Length; i++) {
    Console.WriteLine("command : {0:d} : {1}\r\n", i, args[i]);
  }

  // ・・・

Visual Studioコマンドライン引数を設定するには...

 * 以下のサイト参照。
https://www.ipentec.com/document/visual-studio-set-command-line-arguments-in-debug-application
[[https://msdn.microsoft.com/ja-jp/library/windows/desktop/96s74eb0(v=vs.120).aspx]]
https://code-examples-ja.hateblo.jp/entry/2014/05/06/C%23_Visual_Studio%E3%81%A7Main%28%29%E3%81%AB%E5%BC%95%E6%95%B0%E3%82%92%E4%B8%8E%E3%81%88%E3%81%A6%E5%AE%9F%E8%A1%8C%E3%81%99%E3%82%8B
コマンドライン引数 (設定例)
Mike Tom Sam

関連記事

コンソールアプリ

コンソールアプリ ~ コンソールアプリからフォームを表示する ~
https://blogs.yahoo.co.jp/dk521123/31689623.html