使用Reflection获取属性值时参数计数不匹配

时间:2015-08-21 14:35:54

标签: c# reflection

我收到参数计数不匹配错误,我不明白。

我有以下代码:

Type target = Type.GetType("CPS_Service." + DocumentType);

// Create an instance of my target class
instance = Activator.CreateInstance(target);

foreach (XElement pQ in PQData.Elements())
{
    try
    {
    // populate the member in the instance of the data class with the value from the MQ String
        if (target.GetProperty(pQ.Attribute("name").Value) != null)
        {
            target.GetProperty(pQ.Attribute("name").Value).SetValue(instance, pqRequest[Convert.ToInt32(pQ.Attribute("pos").Value)], null);
        }
    }
}

PropertyInfo[] properties = target.GetProperties();

foreach (PropertyInfo property in properties)
{
    DataColumn col = new DataColumn(property.Name);
    col.DataType = System.Type.GetType("System.String");
    col.DefaultValue = "";
    dt.Columns.Add(col);
}

DataRow dr = dt.NewRow();

foreach (PropertyInfo property in properties)
{
    string value = property.GetValue(instance).ToString();
    dr[property.Name.ToString()] = "";
}
dt.Rows.Add(dr);

return dt; //

所以我实例化一个泛型类并从字符串数组中填充它(取自制表符分隔的字符串),然后我需要从类instance输出一个List或一个数据表

为我的数据表dr填充数据行dt时,我试图从类中获取值:

string value = property.GetValue(instance, null).ToString();
dr[property.Name.ToString()] = "";

但在property.GetValue(instance).ToString();行上我收到以下错误:

  

参数计数不匹配

我已经搜索过,其他有关此错误的问题不适用...

或者我最好只将我的类投射到List并返回它?

1 个答案:

答案 0 :(得分:4)

如果您试图获取String(或任何具有索引器的类型)的所有属性的值,那么您将不得不有一个特殊情况来处理索引器。因此,如果您想获取该参数的值,则必须使用一个参数作为您想要获得的索引值来传递值的对象数组。

例如,property.GetValue(test, new object [] { 0 });将获得索引0处字符串的值。因此,如果字符串的值为" ABC" ,则结果为将是' A'

最简单的方法就是跳过索引器。您可以使用property.GetIndexParameters().Any()测试属性是否为索引器。我想你可以在调用GetProperties()时使用适当的绑定标记来跳过此检查,但如果可以的话,我没有看到它。

如果要跳过代码中的索引,请更改:

PropertyInfo[] properties = target.GetProperties(); 

要:

var properties = target.GetProperties().Where(p => !p.GetIndexParameters().Any());