Suppose I have a list:-
var animals = new[] {"ant", "bear", "bee", ...... "monkey", ...... "zebra"};
what is the easiest way to iterate between bee and monkey?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
after much gnashing of teeth, hair pulling and banging my head against the wall, I decided to do it the easy way of creating my own iterator.
now the following works perfectly:-