标签: c# reflection mvvm-light
我有一个包含一系列属性的模型类。我正在编写一个MVVM Light服务,它允许我直接分配这些属性,这意味着我需要创建一个接口和服务。
有没有办法可以做这样的事情
myService.SetProperty(propertyName, value)
和
var n = myService.GetProperty(propertyName)
其中propertyName始终是一个字符串,但使用反射在模型类中找到正确的属性并设置或读取?
propertyName
答案 0 :(得分:0)
您可能希望看到setting-a-property-by-reflection-with-a-string-value。
或can-i-set-a-property-value-with-reflection
或PropertyInfo.SetValue Method。