3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

WindowsPC を起動した瞬間からできる C# で Hello World!

Posted at

Windows に標準でインストールされている下記の C# コンパイラを使用します。

C:\Windows\Microsoft.NET\Framework\v4.0.30319\csc.exe

①デスクトップ上に Hello という名前のフォルダを作成する。
②すべてのアプリの中から「コマンドプロンプト」を起動する。(ウィンドウボタン → cmd と入力)
③作成した Hello フォルダの場所へ cd コマンドを使って移動する。

C:\Users\xxx>cd C:\Users\xxx\Desktop\Hello
C:\Users\xxx\Desktop\Hello>

④すべてのアプリの中から「メモ帳」を起動する。(ウィンドウボタン → memo と入力)
⑤下記のプログラムを書き、「Hello.cs」として作成した Hello フォルダに保存する。

Hello.cs
using System;

class Hello{
	public static void Main(){
		Console.WriteLine("Hello World!");
	}
}

⑥Windows に標準でインストールされている C# のコンパイラを使って、コンパイルする。

C:\Users\xxx\Desktop\Hello>C:\Windows\Microsoft.NET\Framework\v4.0.30319\csc.exe Hello.cs

⑦「Hello.exe」ファイルが作成されるので、それを実行する。Hello World! と表示されれば成功!

C:\Users\xxx\Desktop\Hello>Hello
Hello World!
3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?