2019年3月19日

摘要: 1 using System; 2 using System.Collections.Generic; 3 4 public class ListTest 5 { 6 public static void Main() 7 { 8 List fruits = new List(); 9 10 fruits.Add("App... 阅读全文

posted @ 2019-03-19 14:43 金色的省略号 阅读(139) 评论(0) 推荐(0) 编辑

摘要: 1 using System; 2 using System.Collections; 3 4 public class SamplesHashtable 5 { 6 public static void Main() 7 { 8 Hashtable myHT = new Hashtable(); 9 10 myHT.... 阅读全文

posted @ 2019-03-19 09:57 金色的省略号 阅读(83) 评论(0) 推荐(0) 编辑