Resharper 5 can convert my foreachloops to Linq queries. Which I like. But linq is way way way harder to debug than a foreachloop.

When I convert my foreach statement to a linq query, I don't see any option to go back the other way.

Does any one know how to do this? Is it even possible?

link|improve this question

75% accept rate
1  
Can you undo the changes? – Julius A Jul 6 '10 at 16:14
1  
Sounds like it would be worthwhile for Resharper to implement this. – Jim G. Jul 6 '10 at 16:28
@ Jangwenyi - I can undo the change if I happen to have just done it. But I am talking about if I just found a linq query that is throwing an exception. I was hoping that my query could be converted back to a foreach even though I converted it to a linq query a while ago. – Vaccano Jul 6 '10 at 16:56
feedback

2 Answers

up vote 5 down vote accepted

We are working on LINQ2Foreach (and some other) functionality for ReSharper vNext

link|improve this answer
feedback

I do not believe this is possible. Certainly, it's not listed in the examples of Quick Fixes, where loop-to-LINQ-expression is shown.

What you should be able to do is use the Context Action 'Convert LINQ to methods chain' to go from the 'fluent' style to the 'methods' style, and then selectively use 'Introduce variable' to pull the expression to pieces.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.