反映字符串时抛出的参数计数不匹配

时间:2012-04-20 20:27:18

标签: c# reflection

我有一个适用于大多数自定义类型的通用方法。今天我正在建立单元测试。扩展名失败,类型为string。 string提供了两个公共实例属性LengthChars。当我拨打GetValue时,它会炸弹“参数计数不匹配”。

我没有必要允许字符串。我可以为我的通用添加一个足以解决问题的约束吗?

代码段

public static DataTable ToDataTable<T>(this List<T> items){...

    //List<T> generally works...just found it failing out with string
    List<string> items = new List<string> { "cookie", "apple", "whatever" };
    System.Reflection.PropertyInfo[] props = typeof(string).GetProperties(System.Reflection.BindingFlags.Public | System.Reflection.BindingFlags.Instance);

    foreach (var item in items)
    {
        var values = new object[props.Length];
        for (var i = 0; i < props.Length; i++)
        {
            values[i] = props[i].GetValue(item, null);
        }
    }

1 个答案:

答案 0 :(得分:9)

Chars是C#术语中的索引器 - 但是在.NET / CLR术语中是“具有索引参数的属性”...因此您只能 通过指定参数获取值。所以在这种情况下,它代表了这里使用的索引器:

char c = text[3];

Dictionary<TKey, TValue>中,索引器将是您获得dictionary[key]的方式。

如果您只想要“普通”属性,请按PropertyInfo.GetIndexParameters()返回空数组的属性过滤属性列表。