我把刀切带进了正文。
public class Client
{
public string ID { get; set; }
public string Name { get; set; }
public string Address { get; set; }
}
var liste = new List<Dictionary<string, string>>();
var dictionary = new Dictionary<string, string>();
dictionary["Id"] = "111";
dictionary["Name"] = "XYZ";
dictionary["Address"] = "Addd";
liste.Add(dictionary);
var result = liste.SelectMany(x => x);
//Code for Converting result into List<Client>
我现在想从使用林克的结局中拟定名单。