博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
001C#基本语法
阅读量:7165 次
发布时间:2019-06-29

本文共 598 字,大约阅读时间需要 1 分钟。

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

你可能感兴趣的文章