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 }