Hi,
I have a this code
public class SomeClass<T>: IEnumerable<T>
{
public List<SomeClass<T>> MyList = new List<SomeClass<T>>();
public IEnumerator<T> GetEnumerator()
{
throw new NotImplementedException();
}
}
How can I Extract a IEnumerator from MyList ?
Thanks StackoverFlower....