我知道有一些问题可以解决这个问题,但答案通常遵循推荐字典或参数集合的思路,这在我的情况下不起作用。
我正在使用一个通过反射工作的库,对具有属性的对象做很多聪明的事情。这适用于已定义的类以及动态类。我需要更进一步,并按照以下方式做一些事情:
public static object GetDynamicObject(Dictionary<string,object> properties) {
var myObject = new object();
foreach (var property in properties) {
//This next line obviously doesn't work...
myObject.AddProperty(property.Key,property.Value);
}
return myObject;
}
public void Main() {
var properties = new Dictionary<string,object>();
properties.Add("Property1",aCustomClassInstance);
properties.Add("Property2","TestString2");
var myObject = GetDynamicObject(properties);
//Then use them like this (or rather the plug in uses them through reflection)
var customClass = myObject.Property1;
var myString = myObject.Property2;
}
该库适用于动态变量类型,并手动分配属性。但是我不知道会预先添加多少或哪些属性。