對象的構造函數我POCO對象MyObject來如何實例的屬性與反思
public class MyModel
{
public MyProperty MyProperty001 { get; set; }
public MyProperty MyProperty002 { get; set; }
MyModel()
{
// New up all the public properties
var properties = GetType().GetProperties(BindingFlags.Public | BindingFlags.Instance);
foreach (var propertyInfo in properties)
{
//Activator.CreateInstance()
}
}
}
有數以百計的屬性,使用反射在構造函數中實例化這些是這可能嗎?我有PropertyInfo,但不知道下一步是什麼。
謝謝 斯蒂芬
創建對象,而不是性能的實例。 – Oded
「新」是什麼意思? – Peter
他的意思是實例化 – msarchet