简述:
最简单的 Hello World
准备:
工具:VS2013 + SqlServer 2008 R2
我们将以.NET Framework 4.5 为基准
开始:
一:新建解决方案 > 新建控制台应用程序
二:开始编码
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- ?
- namespace Net_1
- {
- ????class Program
- ????{
- ????????static
void Main(string[] args) - ????????{
- ????????????Console.Write("Hello World");
- ????????????Console.ReadLine();
- ????????}
- ????}
- }
?
IT生涯正式开始!
?
时间: 2025-01-04 17:21:24