C#图解 - 数组 - 委托 - 事件
摘要:两种类型的多维度数组:矩形数组(rectangular array),交错数组(jagged array)。 矩形数组:不管有多少维度,总是使用一个组方括号。 int x=myArray[4, 6]; 交错数组:每个子数组都是独立数组的多维度数组,可以有不同长度的子数组。int x = jagged
阅读全文
posted @
2018-06-07 15:34
zzunstu
阅读(583)
推荐(0) 编辑
C#图解 - 扩展方法,表达式和运算符
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Collections; namespac
阅读全文
posted @
2018-06-06 10:00
zzunstu
阅读(416)
推荐(0) 编辑
C#图解教程-记录
摘要:预定义类型: 11种数值类型(不能长度的有符号,无符号整数类型),float, double,decimal是高精度小数类型,它可以准确的表示分数; Char类型; bool类型; 栈和堆: 程序运行时,它的数据必须存储在内存中。运行中的程序使用两个内存区域来存储数据:栈和堆。 栈是一个内存数组,是
阅读全文
posted @
2018-06-04 13:37
zzunstu
阅读(144)
推荐(0) 编辑
C#视频 - IComparable, IComparer
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Collections; namespac
阅读全文
posted @
2018-06-01 14:21
zzunstu
阅读(116)
推荐(0) 编辑