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
Other posibility it's to use the variable dynamic.
For example:
Dictionary> d = new Dictionary>(); d.Add("Key", new List());
the variable dynamic resolve the type on runtime.