如何将字典(带数组作为值)转换为C#中的List

时间:2012-08-16 05:46:34

标签: c# arrays list dictionary

我需要将dictionary转换为list,以便将其绑定到网格。

我的dictionarystring作为密钥,将array doubles作为

我可以使用dictionary上的list函数将ToList<>转换为dictionary,但是当我将其绑定到网格时,{{1} }显示为网格列中的对象。

如何将array array中的值添加到doubles?我有没有办法在将list转换为array的同时将dictionary值提取到列表中?

这就是我目前正在做的事情:

list

我需要保留List<KeyValuePair<string, double[]>> dataList = dataDictionary.ToList<KeyValuePair<string, double[]>>(); 中的stringdouble值(双精度数组的大小为2)才能显示在网格中。

我看过这个,但无法按照我的需要实现它: Convert dictionary to List<KeyValuePair>

非常感谢任何建议或帮助。

提前致谢,

马尔

PS - 我还考虑过将array转换为dictionary以便我可以将其绑定到网格,但我不确定这是否可行。

5 个答案:

答案 0 :(得分:3)

IList<double> list = dictionary.SelectMany(item => item.Value).ToList();
  

我需要在数组中保留字符串和两个double值(   双打数组的大小为2)以在网格中显示。

您应该实现在视图上迭代array的其他逻辑。您也可以手动创建Tuple<string,double,double>并绑定2个double值。

            Func<double[], int, double?> safeGet = (array, index) => array.Length - 1 >= index ? (double?)array[index] : null;
            var list = dataList.Select(item => Tuple.Create(item.Key, safeGet(item.Value, 0), safeGet(item.Value, 1))).ToList();

答案 1 :(得分:2)

字典列表

    Dictionary<string, double[]> dict = new Dictionary<string, double[]>();
    dict.Add("1", new double[] { 1.10, 1.20 });
    dict.Add("2", new double[] { 2.10, 2.20 });
    dict.Add("3", new double[] { 3.10, 3.20 });
    dict.Add("4", new double[] { 4.10, 4.20 });
    dict.Add("5", new double[] { 5.10, 5.20 });

     var lstRecord = dict.Select(i => new { Key = i.Key, Val1 = i.Value[0], Val2 = i.Value[1] }).ToList();
     dataGridView1.DataSource = lstRecord;

字典到数据表

        private void button1_Click(object sender, EventArgs e)
        {
            Dictionary<string, double[]> dict = new Dictionary<string, double[]>();
            dict.Add("1", new double[] { 1.10, 1.20 });
            dict.Add("2", new double[] { 2.10, 2.20 });
            dict.Add("3", new double[] { 3.10, 3.20 });
            dict.Add("4", new double[] { 4.10, 4.20 });
            dict.Add("5", new double[] { 5.10, 5.20 });

            dataGridView1.DataSource = Dictionary2Table(dict);
        }

        public DataTable Dictionary2Table(Dictionary<string, double[]> dict)
        {
            DataTable dt = new DataTable();
            dt.Columns.Add("key", typeof(string));
            dt.Columns.Add("Value1", typeof(double));
            dt.Columns.Add("Value2", typeof(double));
            dict
                .Select(i => new { Key = i.Key, Val1 = i.Value[0], Val2 = i.Value[1] })
                .ToList()
                .ForEach(i=>dt.Rows.Add(i.Key,i.Val1,i.Val2));
            return dt;
        }

希望这有帮助

答案 2 :(得分:1)

试试这个:

    Dictionary<string, double[]> dict = new Dictionary<string, double[]>()
    {
        {"a",new double[]{1,2}},
        {"b",new double[]{3,4}}
    };
        List<Tuple<string, double, double>> list = dict.Select(kvp => Tuple.Create(kvp.Key, kvp.Value[0], kvp.Value[1])).ToList();

答案 3 :(得分:1)

这个怎么样?

public class HelperClass
{
    private readonly KeyValuePair<string, double[]> Item;

    [Bindable]
    public string Key { get { return Item.Key; } }

    [Bindable]
    public double Value1 {get { return Item.Value[0]; } }

    [Bindable]
    public double Value2 {get { return Item.Value[1]; } }

    public HelperClass(KeyValuePair<string, double[]> item)
    {
        this.Item = item;
    }
}

public List<HelperClass> Convert(Dictionary<string, double[]> items)
{
    var result = new List<HelperClass>(items.Count);
    foreach(var item in items)
        result.Add(new HelperClass(item));
    return result;
}

现在您可以将网格绑定到List<HelperClass>

答案 4 :(得分:1)

您可以使用元组:

var result = dataDictionary.Select(x => Tuple.Create(x.Key, x.Value[0], x.Value[1]))
                           .ToList();