摘要: // 数组 有序的同元素的 缺点长度是固定的 #region 类型数组 //第一种方式 string[] str = new string[] { "a", "b", "c" }; //第二种方式 string[] str1 = new string[3]; str1[0] = "a"; str1[1] = "b"; str1[2] = "c"; //第三种方式 string[] st... 阅读全文
posted @ 2019-03-08 17:04 学如逆水行舟 阅读(582) 评论(0) 推荐(0) 编辑