IDictionary<string, string> map = str.Split('|')
.ToDictionary(s => s.Split('@')[0], s => s.Split('@')[1]);
上述声明有效。但我想把它改成通用的IDictionary
public class CSVMap <TKey, TValue>
{
public IDictionary<TKey, TValue> func (string str)
{
IDictionary<TKey, TValue> map = str.Split('|').ToDictionary (ConvertValue<TKey>(s => s.Split('@')[0]), ConvertValue<TValue>(s => s.Split('@')[1]));
}
public static T ConvertValue<T>(string value)
{
return (T)Convert.ChangeType(value, typeof(T));
}
并将ConvertValue
拆分字符串转换为TKey
and的类型TValue
。
但是我得到了这些ConvertValue
部分的错误:
错误 CS1660:无法将 lambda 表达式转换为类型“字符串”,因为它不是委托类型
错误 CS1660:无法将 lambda 表达式转换为类型“字符串”,因为它不是委托类型
我不确定错误的含义或如何解决此类问题。