The list tag may refer to: a linked list (an ordered set of nodes, each referencing its successor), or a form of dynamic array.
I have a the following dictionary: IDictionary<int, IList<MyClass>> myDictionary and I am wanting to …
c# .net-3.5 dictionary ilistWhen I have entities in my domain with lists of things, should they be exposed as ILists or IEnumerables? E.…
collections ienumerable ilistCan anyone tell me when I should use either. For example, I think I should use an IList when I …
c# ienumerable ilistSee the definition of System.Array class public abstract class Array : IList, ... Theoretically, I should be able to write this …
c# arrays ilist liskov-substitution-principleI need to design my own custom GenericCollection class. Now i have plenty of options to derive it using IEnumerable, …
c# ienumerable ilist icollection custom-collectionWhat is the difference between IEnumerable and IEnumerable<T>? I've seen many framework classes implementing both these interfaces, …
c# ienumerable generics ilist icollectionI want to map my Dictionary<int, string> to a List<Customer> where Customer has two …
c# ilist idictionaryOK, so List<> contains the AsReadOnly() which gives you the ReadOnlyCollection. What I need is to have a …
c# .net nhibernate ilist readonly-collectionWhat is the most suitable container just for strings holding in some array with non-predetermined upper boundary, which length is …
.net list collections containers ilist