001C#基本语法

 1 using System;
 2 using System.Collections.Generic;
 3 using System.Linq;
 4 using System.Text;
 5 
 6 namespace ConsoleApplication1
 7 {
 8     class Program
 9     {
10         static void Main(string[] args)
11         {
12             //C#单行注释
13             ///在编译项目时系统提取三个/后面的文本,可用于创建帮助文档
14             ///c# 代码是区分大小写的
15             Console.WriteLine("hello world");//正确
16            // Console.writeLine("hello world");错误
17            // Console.Writeline("hello world");错误
18            // Console.writeline("hello world");错误
19 
20         }
21     }
22 }
原文地址:https://www.cnblogs.com/releed/p/5350253.html