C#通过反射设置对象DateTime属性值

时间:2011-11-02 22:53:40

标签: c# .net reflection c#-4.0 system.reflection

我想将对象的所有DateTime属性设置为默认日期。但是,如果我尝试通过反射设置值,我会得到异常:“对象与目标类型不匹配。”

private void SetDefaultValues()
{
    DateTime dt = DateTime.Parse("1/1/2000", new CultureInfo("en-US", true));
    foreach (PropertyInfo p in this.GetType().GetProperties())
    {
        if (p.PropertyType.FullName == "System.DateTime")
        {                                      
            p.SetValue(dt, typeof(DateTime), null);
        }
    }
}

我在做/思考一些根本不正确的事情吗?

1 个答案:

答案 0 :(得分:9)

参数需要调整;第一个是目标 - 我假设这里是this; second 是值(dt)。最后一个涉及“索引器” - 这可能不适用于此。

p.SetValue(this, dt, null);