LINQで特定のインデックスから検索する方法があるかどうか知りたい
これは私が例えばやりたいことです:
//search after the 4th element if exist any true
bool result = myList.Any(a=>a.flagTodo)
// in my case I want to do like: myList.where(a=>a.index >4).Any(a=>a.flagTodo)
同じlinqでそれを行う方法はありますか?