I need some sort of way to store key/value pairs where the value can be of different types.
So I like to do:
int i = 12; string s = \"test\"; doub
Dictionary is clearly the quickest solution.
Another way could be to store a custom class in which you could store the actual value and the information regarding its type