Reputation: 16622
Is there any way to write linq statements while project is running?
Upvotes: 2
Views: 443
Reputation: 30790
Disclaimer: I work for OzCode
First of all Visual Studio 2015 supports Lambda expressions in the Watch window
Bu if you want to debug LINQ you need to either transform it to ForEach or try OzCode's LINQ debugging feature.
Upvotes: 0
Reputation: 61437
As linq statements involve Lambda expressions, which are a compiler feature, I don't think so.
Upvotes: 3