我有一些问题。我想按名称创建类的实例。我找到了Activator.CreateInstance
http://msdn.microsoft.com/en-us/library/d133hta4.aspx,它工作正常,我发现这个:
Set a property by reflection with a string value
too。
但是如何做到这一点呢?我的意思是,我知道类的名称,我知道该类中的所有属性,并且我在字符串中有这个。例如:
string name = "MyClass";
string property = "PropertyInMyClass";
如何创建实例并为属性设置一些值?