Answer Posted / gladiator
Dot Net Provides Collection Classes which are used for Data
Storage and Data Retrieval.
This collection classes implements the ICollection
Interface which extends IEnumerator interface.
IDictionary and IList Interface extends ICollection
Interfrace.
IList is for values, while IDictioanry is for collection of
(Key,Values) pair.
Collection that implement IList are: System.Array and
System.Collections.ArrayList.
Collections that implement IDictionary are Hashtable,
ListDictionary, SortedList, HybridDictionary.
Collections derived from ICollection are: Stak, BitArray,
Queue, NameValueCollection.
| Is This Answer Correct ? | 10 Yes | 1 No |
Post New Answer View All Answers
Perfect Example Of While And Do-While Loop In C#.Net ?
Can an abstract class inherit from another abstract class c#?
Can you call from an inherited constructor to a specific base constructor if both base class and an inheriting class has a number of overloaded constructors?
What are generics in c#.net?
What is datetime parse in c#?
How many bytes is an int?
Can hashtable have duplicate keys?
What is a console file?
What is hash c#?
How do I declare a pure virtual function in c#?
What is xml comments in c#?
If I return out of a try/finally in c#, does the code in the finally-clause run?
What is array formula?
What are the differences between value types and reference types?
What do constructors do in c#?