25 lines
564 B
C#
25 lines
564 B
C#
// Lesson 01: Hello World
|
||
// 目标:熟悉 C# 基本结构和输出
|
||
|
||
using System;
|
||
|
||
namespace CSharpLearning
|
||
{
|
||
class Lesson01_HelloWorld
|
||
{
|
||
static void Main(string[] args)
|
||
{
|
||
// 打印 hello world
|
||
Console.WriteLine("Hello, World!");
|
||
Console.WriteLine("你好,C#!");
|
||
|
||
// 打印带格式
|
||
string name = "无言势字幕";
|
||
Console.WriteLine($"项目名称: {name}");
|
||
|
||
// 等待输入(防止窗口关闭)
|
||
Console.ReadLine();
|
||
}
|
||
}
|
||
}
|