D
Douglas Harber
If I declare an array:
SomeClass[] instancesOfSomeClass;
which has an array of SomeClass objects assigned to it, is there anyway to
use a generic enumerator with this collection?
I'd like to use an IEnumerator<SomeClass> but there doesn't appear to be any
way to generate such an enumerator on arrays.
Am I missing something?
Thanks,
Doug Harber
SomeClass[] instancesOfSomeClass;
which has an array of SomeClass objects assigned to it, is there anyway to
use a generic enumerator with this collection?
I'd like to use an IEnumerator<SomeClass> but there doesn't appear to be any
way to generate such an enumerator on arrays.
Am I missing something?
Thanks,
Doug Harber