课程链接
https://www.bilibili.com/video/BV1NA4y1R7vL?p=3&vd_source=0f636f173a0a5855cca528319972bfe9
vs studio 2022的安装
略
创建项目

注意创建的项目类型是.NET Framework控制台应用程序。


在接下来的窗口输入名称等。如果你想了解关于“解决方案”的详细内容可以查看刘铁猛老师的《C#语言入门西详解》的第二节课11:30处。

练习打卡
请务必子自己在VS中写出这些内容后再打卡,打卡时可以把自己vs中的代码粘贴进评论区。
代码练习:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HelloWordCS
{
internal class Program
{
static void Main(string[] args)
{
Console.WriteLine("我的第一个程序");
Console.ReadKey();
}
}
}

回复 zero 取消回复