I\'d like to create a Dictionary object, with string Keys, holding values which are of a generic type. I imagine that it would look something like this:
Dict
How about Dictionary? (assuming you're on C# 4)
Dictionary
Dictionary Dict = new Dictionary();
Source: https://stackoverflow.com/a/5038029/3270733