Luiscencio
Luiscencio

Reputation: 3965

LINQ debug time code change... is it possible in vs2008?

is there any ways to accomplish this? it is really annoying having to restart every time.

Upvotes: 1

Views: 207

Answers (1)

JaredPar
JaredPar

Reputation: 755307

No this is not possible. C# does not allow ENC anywhere in a method which contains a LINQ expression. VB.Net allows you to edit within the same method as a LINQ expression as long as you don't actually edit the structure of the LINQ query.

Upvotes: 5

Related Questions