Eu sei como implementar o IEnumerable não genérico, assim:
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();
}
}
}
No entanto, também notei que o IEnumerable tem uma versão genérica IEnumerable<T>
, mas não consigo descobrir como implementá-lo.
Se eu adicionar using System.Collections.Generic;
ao meu uso diretivas, e depois alterar:
class MyObjects : IEnumerable
para:
class MyObjects : IEnumerable<MyObject>
E, em seguida, clique com o botão direito do mouse IEnumerable<MyObject>
e selecione Implement Interface => Implement Interface
, o Visual Studio adiciona o seguinte bloco de código:
IEnumerator<MyObject> IEnumerable<MyObject>.GetEnumerator()
{
throw new NotImplementedException();
}
Retornar o objeto IEnumerable não genérico do GetEnumerator();
método não funciona desta vez, então o que devo colocar aqui? A CLI agora ignora a implementação não genérica e segue diretamente para a versão genérica quando tenta enumerar minha matriz durante o loop foreach.
this.GetEnumerator()
e simplesmente retornarGetEnumerator()
?