私は次のように非ジェネリックIEnumerableを実装する方法を知っています:
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();
}
}
}
ただし、IEnumerableには汎用バージョンがありますIEnumerable<T>
が、それを実装する方法がわかりません。
using System.Collections.Generic;
usingディレクティブに追加してから、次を変更した場合:
class MyObjects : IEnumerable
に:
class MyObjects : IEnumerable<MyObject>
次に、右クリックしIEnumerable<MyObject>
て選択するとImplement Interface => Implement Interface
、VisualStudioは次のコードブロックを追加します。
IEnumerator<MyObject> IEnumerable<MyObject>.GetEnumerator()
{
throw new NotImplementedException();
}
今回は、メソッドから非ジェネリックIEnumerableオブジェクトを返すことGetEnumerator();
はできません。そこで、ここに何を入れますか?CLIは、非ジェネリック実装を無視し、foreachループ中に配列を列挙しようとすると、ジェネリックバージョンに直接向かいます。