001C#基本语法
Posted 简单就快乐~~
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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 }
以上是关于001C#基本语法的主要内容,如果未能解决你的问题,请参考以下文章