Monday, September 12, 2011

.NET interview questions: - What are hashtable collections?

In arraylist or array if we have to access any data we need to use the internal index id generated by the array list collection. For instance the below code snippet shows how the internal id is used to fetch data from array list.
In actual scenarios we hardly remember internal id’s generated by collection we
would like to fetch the data by using some application defined key. There’s
where hash table comes in to picture.

string str = MyList[1].ToString();
Hash table helps to locate data using keys as shown below. When we add data to hash table it also has a provision where we can add key with the data. This key will help us to fetch data later rather than using internal index id’s generated by collections.
objHashtable.Add(“p001”,”MyData”);

This key is converted in to numeric hash value which is mapped with the key
for quick lookup.
View the following video on CAS, evidence, permission set & code groups: -






Get more learning materials for important Dotnet interview questions

Regards,

Visit author’s blog for more Most asked Dotnet interview question

No comments: