初学c#-2019.1.17

こ雲淡風輕ζ 提交于 2021-02-11 17:38:33

using System;                                       // using 关键字——引用.net框架类库中的现有资源
using System.Collections.Generic;      // System命名空间——提供了访问 
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace test_01
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello world!");      // 静态方法——写到控制台窗口上
Console.ReadKey77();                       // 告诉代码在结束前等待按键
}
}

}


// 不同于c的一个数据类型 decimal类型 ——不遵守四舍五入规则的十进制数,默认为0.0m
// 内置引用类型——object 根类型 .net框架中所有类型都由其派生而来
// 类型转换用类 Convert ——Convert.To类型()

//   foreach语句 
/* foreach(数据类型 变量名 in 数组名)
* {
* 语句;
* }
*/

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!