📜  c# implement ienumerable t - C# 代码示例

📅  最后修改于: 2022-03-11 14:49:12.205000             🧑  作者: Mango

代码示例1
using System.Collections;

class MyObjects : IEnumerable
{
    List mylist = new List();

    public MyObject this[int index]  
    {  
        get { return mylist[index]; }  
        set { mylist.Insert(index, value); }  
    } 

    public IEnumerator GetEnumerator()
    {
        return mylist.GetEnumerator();
    }

    IEnumerator IEnumerable.GetEnumerator()
    {
        return this.GetEnumerator();
    }
}