我有一个适用于大多数自定义类型的通用方法。今天我正在建立单元测试。扩展名失败,类型为string
。 string提供了两个公共实例属性Length
和Chars
。当我拨打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);
}
}
答案 0 :(得分:9)
Chars
是C#术语中的索引器 - 但是在.NET / CLR术语中是“具有索引参数的属性”...因此您只能 通过指定参数获取值。所以在这种情况下,它代表了这里使用的索引器:
char c = text[3];
在Dictionary<TKey, TValue>
中,索引器将是您获得dictionary[key]
的方式。
如果您只想要“普通”属性,请按PropertyInfo.GetIndexParameters()返回空数组的属性过滤属性列表。