2013年1月8日火曜日

C# サンプルプログラム

以下は、C#のサンプルプログラムです。コマンドラインから実行すると"What is your name?"と聞いてくるのでこちらの名前を入力すると、その名前に対して挨拶してくるというものです。







// Namespace Declaration
using System;

// Program start class
class InteractiveWelcome
{
    // Main begins program execution.
    public static void Main()
    {
        // Write to console/get input
        Console.Write("What is your name?: ");
        Console.Write("Hello, {0}! ", Console.ReadLine());
        Console.WriteLine("Welcome to the C# Station Tutorial!");
Console.ReadLine();

    }
}

0 件のコメント:

コメントを投稿