2013年1月8日火曜日

C# サンプルプログラム3

以下は、C#のサンプルプログラムです。実行するとコマンドラインに"Welcome to the C# Station Tutorial!"と表示するだけの簡単なプログラムです。なお、プログラムをコンパイルする時には、コマンドラインから、csc <プログラムファイル名>  と入力します。




// Namespace Declaration
using System;

// Program start class
class WelcomeCSS
{
    // Main begins program execution.
    static void Main()
    {
        // Write to console
        Console.WriteLine("Welcome to the C# Station Tutorial!");
// keep screen from going away
// when run from VS.NET
Console.ReadLine();
    }
}

0 件のコメント:

コメントを投稿