So come implementare l'IEnumerable non generico, in questo modo:
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();
}
}
}
Tuttavia noto anche che IEnumerable ha una versione generica IEnumerable<T>
, ma non riesco a capire come implementarla.
Se aggiungo using System.Collections.Generic;
alle mie direttive using e poi cambio:
class MyObjects : IEnumerable
per:
class MyObjects : IEnumerable<MyObject>
Quindi fare clic con il pulsante destro del mouse IEnumerable<MyObject>
e selezionare Implement Interface => Implement Interface
, Visual Studio aggiunge utilmente il seguente blocco di codice:
IEnumerator<MyObject> IEnumerable<MyObject>.GetEnumerator()
{
throw new NotImplementedException();
}
Restituire l'oggetto IEnumerable non generico dal GetEnumerator();
metodo non funziona questa volta, quindi cosa metto qui? La CLI ora ignora l'implementazione non generica e si dirige direttamente alla versione generica quando tenta di enumerare il mio array durante il ciclo foreach.
this.GetEnumerator()
e semplicemente restituireGetEnumerator()
?