Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
リスト内の偶数の位置からのみLinqを使用してエントリを選択するにはどうすればよいですか?
述語に項目のインデックスが含まれる Enumerable.Where へのオーバーロードを使用できます。
var myList = new List<int>{ 1, 2, 3, 4, 5, 6 }; var evenIndexes = myList.Where( (num, index) => index % 2 == 0);