HelloWorld2.md 1.2 KB
Newer Older
F
feilong 已提交
1 2
# 第一个完整的C#程序

F
feilong 已提交
3
前一章的习题里我们已经使用 C#10.0 的方式,写了一些C#全局代码。在更早的版本里,则需要编写完整的C#代码。例如:
F
feilong 已提交
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18

```csharp
using System;
using System.Collections.Generic;
using System.Linq;

namespace Program{
    public class Program{
        public static void Main(string[] args){
            // C# 代码
        }
    }
}
```

F
feilong 已提交
19 20 21 22 23 24 25 26 27 28 29 30
.NET 6 下使用命令创建一个C#程序:

```bash
dotnet new console --output sample
```

`sample/Program.cs` 里编写程序,然后执行下面的命令运行:

```bash
dotnet run --project sample
```

F
feilong 已提交
31
在 C# 10.0 里以下代码不能正确运行的是?
F
feilong 已提交
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71

## 答案

```csharp
WriteLine("Hello, World!");
```

## 选项

### 完整的C#代码

```csharp
using System;
using System.Collections.Generic;
using System.Linq;

namespace Program{
    public class Program{
        public static void Main(string[] args){
            Console.WriteLine("Hello, World!");
        }
    }
}
```

### 不使用using

```csharp
public class Program{
    public static void Main(string[] args){
        Console.WriteLine("Hello, World!");
    }
}
```

### 全局代码

```csharp
Console.WriteLine("Hello, World!");
```