■ はじめに
* コンソールアプリを作りそうなので、復習。 * プロジェクト作成などは以下を参考。https://www.ipentec.com/document/csharp-create-simple-console-application
https://docs.microsoft.com/ja-jp/dotnet/csharp/programming-guide/inside-a-program/hello-world-your-first-program
コマンドライン引数
https://www.ipentec.com/document/csharp-get-commandline-arguments
■ サンプル
例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