-
Select
メソッドとSelectMany
メソッドを使用する方法:var collection = new List<string> { "apple", "banana", "orange", "grape" }; var indexedCollection = collection.Select((item, index) => new { Item = item, Index = index }); foreach (var item in indexedCollection) { Console.WriteLine($"Item: {item.Item}, Index: {item.Index}"); }
-
Select
メソッドとZip
メソッドを使用する方法:var collection = new List<string> { "apple", "banana", "orange", "grape" }; var indexedCollection = collection.Select((item, index) => new { Item = item, Index = index }) .Zip(collection, (indexedItem, originalItem) => new { indexedItem.Item, indexedItem.Index }); foreach (var item in indexedCollection) { Console.WriteLine($"Item: {item.Item}, Index: {item.Index}"); }
-
Select
メソッドとRange
メソッドを使用する方法:var collection = new List<string> { "apple", "banana", "orange", "grape" }; var indexedCollection = Enumerable.Range(0, collection.Count) .Select(index => new { Item = collection[index], Index = index }); foreach (var item in indexedCollection) { Console.WriteLine($"Item: {item.Item}, Index: {item.Index}"); }
これらの方法を使用すると、コレクション内のアイテムのインデックスを簡単に見つけることができます。LINQを活用することで、コードの簡潔さと可読性を向上させることができます。