首页上一页 1 下一页尾页 1 条记录 1/1页
为什么VS2022创建框架点NET5.0和6.0差异很大?
发表在C#图书答疑
2022-03-04
《零基础学C#》第1 章 宇宙第一IDE — Visual Studio
是否精华
是
否
版块置顶:
是
否
5.0
using System;
using Demo;
namespace ConsoleApp26
{
internal class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
}
}
}
}
而6.0
// See https://aka.ms/new-console-template for more information
Console.WriteLine("Hello, World!");