我将一个对象模型保存到
XML但是当我加载它时,我在尝试使用PropertyInfo.SetValue()时会遇到异常,因为该属性没有setter只是一个getter.
我想要么不保存只有getter的属性或者在加载时弄清楚它是否适合我尝试设置值.
任何人都知道如何做到这一点
干杯
解决方法
您可以使用
PropertyInfo.GetSetMethod
– 如果属性是只读的或者setter是非公共的,则返回null.
if (property.GetSetMethod() != null) { // Yup,you can write to it. }
如果您可以应对非公开制定者,您可以使用:
if (property.GetSetMethod(true) != null) { // Yup,there's a setter - but it may be private }