Tell me about Dictionary Object?
Answers were Sorted based on User's Feedback
Answer / guest
It it a collection Object used to store "name = value" pair
information. Collection of similar data.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / sonali
A dictionary is actually just another collection of
Key/Value pairs, just like a HashTable, except that you
declare a type for the Key and Value.
An example of a simple Dictionary object would be something
like:
Dictionary<int, string> newDict = new Dictionary<int,string>();
When you get the key or value, you are given an actual
Object of a specific type. With a HashTable, the Key and
Value are just Objects, meaning they have no type and must
be converted to something in order to be more than just that.
With a dictionary, you can declare the Object types and get
back useful Objects or those types
| Is This Answer Correct ? | 1 Yes | 0 No |
What is the microsoft intermediate language (msil)?
how can i show the data of sql table in different dropdown list?
What options are available to deploy my .net applications?
Write code for the following in ASP a)Display attributes of a file b) File copy c) get disk capacity.
Explain the post and get method?
What is Response object? How is it related to ASP's Response object?
Describe how a browser-based Form POST becomes a Server-Side event like Button1_OnClick
What are LOCAL and GLOBAL variables?
Should user input data validation occur server-side or client-side?
can any one send me some real time sap crm interview question along with answer .my email id is psundeep@ymail.com
What is the common type system (cts)?
How do in-process communication work in the common language runtime?