码迷,mamicode.com
首页 > Windows程序 > 详细

C#中的CollectionBase用法

时间:2016-03-19 15:57:28      阅读:236      评论:0      收藏:0      [点我收藏+]

标签:

ColectionBase中有List方法,返回的是类本身
  1. class A :CollectionBase
  2. {
  3. public void add(B b)
  4. {
  5. List.Add(b);
  6. }
  7. public void remove(B b)
  8. {
  9. List.Remove(b);
  10. }
  11. public B this[int index]
  12. {
  13. set
  14. {
  15. List[index] = value;
  16. }
  17. get
  18. {
  19. return (B)List[index];
  20. }
  21. }
  22. }





C#中的CollectionBase用法

标签:

原文地址:http://www.cnblogs.com/weloveshare/p/5295137.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!