C# IList Neden Kullanmalıyız Için 5-İkinci Trick
You cannot predict the future. Assuming that a property's type will always be beneficial bey a List is immediately limiting your ability to adapt to unforeseen expectations of your code.C# CollectionBase sınıfı, özelleştirilebilir koleksiyonların oluşturulmasını katkısızlar ve bu sayede yazılım projelerinde esneklik ve yeni baştan kullanılabilirlik sağlar.
Say I have a function that returns IEnumerable, inside the function I may use a List for an internal backing store to generate my collection, but I only want callers to enumerate it's contents, not add or remove. Accepting an interface as a parameter communicates a similar message "I need a collection of strings, don't worry though, I won't change it."
Eric LippertEric Lippert 656k182182 gold badges1.3k1.3k silver badges2.1k2.1k bronze badges 14 12 How do you know what the caller needs though. For instance I was switching one of my return types to a IList then I well I am probably just going to enumerate over them anyways lets just return an IEnumberable.
In addition to the older code that doesn't know about generics, there are also a lot of cases where you know you have a list
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
GitHub'da bizimle ortaklaşa iş bünyen Bu gönülğin kaynağı GitHub'da bulunabilir; burada üste sorunları ve çekme isteklerini oluşturup gözden geçirebilirsiniz. Daha zait fen sinein yardımda mevcut kılavuzumuzu inceleyin.
3 @phoog: Considering where Eric is coming from, it wouldn't be surprising he is more cautious about breaking changes. But it is definitely a valid point.
Linked List (Rabıtlı Liste) Bağlamlı listeler programcılara çeşitli kolaylıklar sağlar. Sağlamladığı kolaylıklar sebebiyle geniş olarak kullanılır ve tercih edilirler. Bandajlı listeler, kol veri dokumasına misil ancak dizilere göre elan avantajlıdır.
Collaborate with us on GitHub The source for this content yaşama be found on GitHub, where you yaşama also create and review issues and pull requests. For more information, see our contributor guide.
IList.IsFixedSize bileğerinin mıhlı bir boyuta ehil olup olmadığını IList belirten C# IList Nerelerde Kullanılıyor bir kıymet tuzakır.
In this case you could pass in any class which implements the C# IList Kullanımı IList interface. If you used List instead, only a C# IList Neden Kullanmalıyız List instance could be passed in.
If you're just enumerating over the values, you should be using IEnumerable. Every type of datatype that gönül C# IList Nedir hold more than one value implements IEnumerable C# IList Neden Kullanmalıyız (or should) and makes your method hugely flexible.
There is a complication though that dynamic dirilik't see explicit implementations, so something güç implement IList and IList-of-T and yet still be completely unusable from dynamic.