C# 学习笔记之 Hello World Posted on 2010-07-07 In 技术笔记 晚上无聊看了点 C#,随便写了个 Hello World 做纪念 12345678910111213using System;namespace MyNamespace{ class MyClass { static void Main() { Console.WriteLine("Hello World"); Console.ReadLine(); return ; } }} 保存为 helloworld.cs,然后再 cmd 里面执行 1csc helloworld.cs 会在源文件的目录下面生成一个 helloworld.exe 的可执行程序