以下は、C#のサンプルプログラムです。コマンドラインから、第一引数として、自分の名前を与えて実行します。そんお名前に対して挨拶をするというプログラムです。
// Namespace Declaration
using System;
// Program start class
class NamedWelcome
{
// Main begins program execution.
static void Main(string[] args)
{
// Write to console
Console.WriteLine("Hello, {0}!", args[0]);
Console.WriteLine("Welcome to the C# Station Tutorial!");
Console.ReadLine();
}
}
0 件のコメント:
コメントを投稿