编程学习路径:语言——类库——框架
参考资料:离线MSDN文档,C#语言定义文档,推荐书籍—C# in a nutshell;其中,C#语言定义文档知识点会串的比较多,不建议详读。
使用MSDN:光标选中…
using System;
using System.Collections.Generic;
namespace ConsoleApp2
{class Program{static void Main(string[] args){//c#语言对表达式的定义:a sequence of one or more operands and zero or more operators can be evaluated to a single value object m…