Say I have the following method:
public List<List<int>> DoSomething () {
List<List<int>> result;
//Do some things
return result; //Would like to breakpoint here
}
I try to have a conditional breakpoint such as:
result.Any(i => i.Any(j => j < 0))
I get an error saying you cannot have lambda expressions in conditional breakpoints. Why is that?