Greetings!
You should be able to use the
Thanks for your question, and good luck!
You should be able to use the
IEnumerable
interface directly. For example:var results = productManager.Search('price > 100'); var enumerator = results.GetEnumerator(); while (enumerator.MoveNext()) { console.WriteLine(enumerator.Current.Name); }