码迷,mamicode.com
首页 > Windows程序 > 详细

001C#基本语法

时间:2016-04-03 18:49:06      阅读:213      评论:0      收藏:0      [点我收藏+]

标签:

 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#基本语法

标签:

原文地址:http://www.cnblogs.com/releed/p/5350253.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!