背景
xml文件中有些元素的属性被删除,导致文件无法被读取(C#)。
调试之后发现,因为属性被删除,读进来会保持默认值null,在后续的反射中如果用这个null给字符串属性赋值,会抛异常。
另外发现前面还有其他一些属性也被删掉了,但并不会导致异常,只因它们的类型是int。
示例
csharp
using System.Reflection;
class Program
{
public int A
{
set;
get;
}
public string B
{
set;
get;
}
static void Main(string[] args)
{
Program program = new Program();
PropertyInfo pa = program.GetType().GetProperty("A");
pa.SetValue(program, null, null); // 正常
PropertyInfo pb = program.GetType().GetProperty("B");
pb.SetValue(program, null, null); // 异常
}
}