It's a general question. I know there are different ways to store huge amounts of data in memory, retrieve it from there and process, so I found such thing as hashmap, hashtable.
The problem is that I have no idea how to declare and use it in asp.net (C#). Can you tell me how to:
Declare hashmap in code-behind
Put data into it
Retrieve data from it
What is key and what is value? In terms of a table with 5 columns and 3 rows, what is considered to be keys and values? How to load this table in memory using Hashmap or Dictionary?
What would you recommend for fast loading huge tables of data in memory and quickly iterate through it to build an html table?