我想在该类型的类型和实例之间创建一个字典。
例如对于字典 MyTypeDictionary :
Dictionary<Type,InstanceOfType> MyTypeDictionary = new Dictionary<Type,InstanceOfType>();
MyTypeDictionary.Add(typeof(int),4);
MyTypeDictionary.Add(typeof(string),"hello world");
MyTypeDictionary.Add(typeof(DateTime),Datetime.Now);
int MyInt = MyTypeDictionary[typeof(int)];
这样做的正确方法是什么?