次の方法があるとします。
public List<List<int>> DoSomething () {
List<List<int>> result;
//Do some things
return result; //Would like to breakpoint here
}
次のような条件付きブレークポイントを設定しようとしています。
result.Any(i => i.Any(j => j < 0))
条件付きブレークポイントにラムダ式を使用できないというエラーが表示されます。何故ですか?