随笔分类 -  .NET->C#

摘要:1 //一维数组 2 int[] a11 = new int[3] { 1, 2, 3 }; 3 int[] a12 = new int[ ] { 1, 2, 3 }; 4 int[] a13 = new [ ] { 1, 2, 3 }; 5 int[... 阅读全文
posted @ 2016-01-21 14:19 .NET全栈工程师 阅读(12543) 评论(0) 推荐(0)
摘要:给大家推荐一本最全面、最权威、最严谨、体系结构最好的C#语言教程,也是C#语言参考书。书名是《C#语言规范》。一、获取1、安装Visual Studio中文版。2、打开‘C:\Program Files\Microsoft Visual Studio 10.0\VC#\Specifications\... 阅读全文
posted @ 2016-01-05 10:19 .NET全栈工程师 阅读(1514) 评论(1) 推荐(0)