Answer Posted / kautilya
arraylist is a collection of objects of same type. It
implements IList interface. it can grow dynamically, we can
add elements in it at runtime. it should be used when we
dont have information that how many elements will get
stored in it. it also has facility of searching and sorting.
Hashtable is storing data in key-value pair, where key
field will remain unique. Here elements can be searched
using key value. It is serializable.
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
Why do we use delegates in c#?
How can you access a private method of a class?
write code for inserting and updating recoards in sql server database using connected architecture & records shoulds displayed in grid view ( use c# )
What is the concept of strong names?
How to force my .net app to run as administrator on windows 7?
Explain About Assembly in .NET, types of assemblies, their difference, How to register into GAC. How to generate the strong names & its use.
What Is The Smallest Unit Of Execution In .net?
What do you mean by casting a data type?
Explain the three services model (three-tier application). Presentation (ui), business (logic and underlying code) and data (from storage or other sources).
how to compare numbers and dispaly the largest ? *first thing I wanted to do is to input how many numbers to be compared *and then analyzed the largest then display it.
Where do I put dll files?
What is the benefit of using interface in c#?
Can datetime be null c#?
Can I get the name of a type at runtime?
What is yield in c#?