// Hashtable2.cs // 给Hashtable添加元素的示例 using System; using System.Collections; public class Test { public static void Main() { Hashtable table = new Hashtable(); table.Add("Sunday", "星期天"); table.Add("Monday", "星期一"); table.Add("Tuesday", "星期二"); table
暂无评论