I was wondering if anyone knew a good way to store data such that it would be indexed with two keys. Basically, I need something like a table (top-row is key1, left-column is k
If you're running .NET 4 you should look at the Tuple class.
IDictionary, V> - This is the proper way to represent a 2-key dictionary.
IDictionary, V>