我知道如何实现非泛型 IEnumable,如下所示:
using System;
using System.Collections;
namespace ConsoleApplication33
{
class Program
{
static void Main(string[] args)
{
MyObjects myObjects = new MyObjects();
myObjects[0] = new MyObject() { Foo = "Hello", Bar = 1 };
myObjects[1] = new MyObject() { Foo = "World", Bar = 2 };
foreach (MyObject x in myObjects)
{
Console.WriteLine(x.Foo);
Console.WriteLine(x.Bar);
}
Console.ReadLine();
}
}
class MyObject
{
public string Foo { get; set; }
public int Bar { get; set; }
}
class MyObjects : IEnumerable
{
ArrayList mylist = new ArrayList();
public MyObject this[int index]
{
get { return (MyObject)mylist[index]; }
set { mylist.Insert(index, value); }
}
IEnumerator IEnumerable.GetEnumerator()
{
return mylist.GetEnumerator();
}
}
}
但是我也注意到 IEnumable 有一个通用版本 IEnumerable<T>
,但是我不知道如何实现它。
如果我将 using System.Collections.Generic;
添加到我的 using 指令中,然后更改:
class MyObjects : IEnumerable
致:
class MyObjects : IEnumerable<MyObject>
然后右键单击 IEnumerable<MyObject>
并选择 Implement Interface => Implement Interface
,Visual Studio 很有帮助地添加了以下代码块:
IEnumerator<MyObject> IEnumerable<MyObject>.GetEnumerator()
{
throw new NotImplementedException();
}
从 GetEnumerator();
方法返回非泛型 IEnumable 对象这次不起作用,那么我在这里放什么呢?CLI 现在忽略非泛型实现,并在 foreach 循环期间尝试枚举数组时直奔泛型版本。