我有一个适用于我的大多数自定义类型的通用方法。今天我正在构建单元测试。扩展失败,类型为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);
}
}