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
One of the way is to create a Dictionary value with type "object" like:
Dictionary d = new Dictionary();
So, here object datatype is used as a generic datatype, you can put anything in this as a value.