异度部落格

学习是一种生活态度。

0%

C# 学习笔记之 Hello World

晚上无聊看了点 C#,随便写了个 Hello World 做纪念

1
2
3
4
5
6
7
8
9
10
11
12
13
using System;
namespace MyNamespace
{
class MyClass
{
static void Main()
{
Console.WriteLine("Hello World");
Console.ReadLine();
return ;
}
}
}

保存为 helloworld.cs,然后再 cmd 里面执行

1
csc helloworld.cs

会在源文件的目录下面生成一个 helloworld.exe 的可执行程序