i want to change all java style iterator in my code to foreach or Lambda style.
i want to do that by adding code snippet to the Resharper. and then- as foreach for example when you write the word foreach and click Tab Tab the all foreach expression written. -so the all iterator expression will be change to foreach or Lambda.
any way, if you know how to change iterator to foreach or Lambda style, it will help me a lot!
i need to change this code block to foreach or Lambda:
IEnumerator xIntEnumerator = xList.GetEnumerator();
while (xIntEnumerator.MoveNext())
{
//do somthing
}
Thanks