c# custom ienumerable class code example
Example: add getenumerator to class c#
public bool MoveNext()
{
position++;
return (position < carlist.Length);
}
public void Reset() => position = 0;
public object Current {
get { return carlist[position];}
}