uzay95
uzay95

Reputation: 16622

Debugging LINQ statement on QuickWatch or somewhere else

Is there any way to write linq statements while project is running?

Upvotes: 2

Views: 443

Answers (2)

Dror Helper
Dror Helper

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

Femaref
Femaref

Reputation: 61437

As linq statements involve Lambda expressions, which are a compiler feature, I don't think so.

Upvotes: 3

Related Questions