我有一个清单:
public class tmp
{
public int Id;
public string Name;
public string LName;
public decimal Index;
}
List<tmp> lst = GetSomeData();
我想将此列表转换为 HashTable,并且我想在扩展方法参数中指定Key
和。Value
例如,我可能想要Key=Id
andValue=Index
或Key = Id + Index
and Value = Name + LName
。我怎样才能做到这一点?