2016年3月8日

C#索引器3 重载

摘要: 7.索引器 重载 public class Demo { private Hashtable name = new Hashtable(); public string this[int index] { get { return name[index].ToString(); } set { na 阅读全文

posted @ 2016-03-08 17:52 可爱的春哥 阅读(498) 评论(0) 推荐(0) 编辑

C#索引器2 字符串作为索引号

摘要: 6.索引器 字符串作为索引号 public class Demo { private Hashtable name = new Hashtable(); public string this[string index] { set { name.Add(index, value); } get { 阅读全文

posted @ 2016-03-08 11:31 可爱的春哥 阅读(1213) 评论(0) 推荐(0) 编辑

C#索引器1 数字作为索引号

摘要: 5.索引器 数字作为索引号 public class IndexerClass { private string[] name = new string[2]; public string this[int index] { get { if (index < 2) { return name[in 阅读全文

posted @ 2016-03-08 11:28 可爱的春哥 阅读(457) 评论(0) 推荐(0) 编辑

导航