C# ToList Kullanımı
"ToList" metodu C#'da IEnumerable
List
Aşağıda "ToList" metodunun kullanımı için çeşitli örnekler verilmektedir:
1 - Bir dizinin elemanlarını List
int[] numbers = { 1, 2, 3, 4, 5 };
List numberList = numbers.ToList();
2 - Bir Dictionay'deki anahtarları List
Dictionary ages = new Dictionary()
{
{"Ali", 22},
{"Fatma", 25},
{"Reyhan", 30}
};
List names = ages.Keys.ToList();
3 - Bir Dictionay'deki değerleri List
Dictionary ages = new Dictionary()
{
{"Ali", 22},
{"Fatma", 25},
{"Reyhan", 30}
};
List agesList = ages.Values.ToList();
4 - Bir List
List originalList = new List { 1, 2, 3, 4, 5 };
List copiedList = originalList.ToList();
5 - Bir sorgu sonucunu List
string[] words = { "elma", "armut", "muz", "çilek", "patlıcan", "erik" };
List filteredWords = (from w in words where w.StartsWith("e") select w).ToList();
"ToList" metodunun kullanımı oldukça basittir ve sadece IEnumerable