A. delegate B. event C. this D. value
A. 泛型集合位于System.Collections.Generic命名空间 B. 泛型集合只能存储同一种类型的对象 C. 最常用的泛型集合是List泛型集合和Dictionary泛型集合 D. 泛型集合位于System.IO命名空间
A. 123 B. 321 C. 132 D. 213
A. 封装
A. int[] arr = new int[10,20]; B. int[] arr = int new[10,20]; C. int[,] arr = new int[10,20]; D. int[,] arr = new int[10;20];