请教高手,关于集合和列表的。rebex.net ftp
反编译rebex.net ftp,发现一个问题,有个类,大概是这么实现的。在最后一块,
     public class this[int] 编译时出现错误,说[int]后面应输入标示符?我该输入什么?
我的QQ:75455329,希望有高手能帮我解决一下。这段代码改好后可以贡献出来给网友,哈哈
IEnumerable<Class>, IEnumerable
  IList<Class> _collection;  
public class this[int]
         {
             get
             {
                 return this._collection[num1];
             }
             set
             {
                 throw new Exception("The method or operation is not implemented.");
             }
         }
------解决方案--------------------
public class this[int num1]