C#中的CollectionBase用法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#中的CollectionBase用法相关的知识,希望对你有一定的参考价值。

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用法的主要内容,如果未能解决你的问题,请参考以下文章

比较 C# 中的字符串片段并从集合中删除项目

XSS:如何从 C# 中的字符串中删除 JS 片段?

c# 中括号(【】)代表啥

jquery中的$的特殊用法

Xcode中的变量模板(variable template)的用法

C# fun