'Convert' Dictionary into List<object>

前端 未结 9 1759
感情败类
感情败类 2021-02-20 16:12

I have a Dictionary dictionary1 and I need to convert it into a List where Data has the properties lab

9条回答
  •  心在旅途
    2021-02-20 16:46

    Perhaps you could use LINQ?

    dictionary1.Select(p => new Data(p.Key, p.Value)).ToList()
    

    This is however using yield and thus loops in the background...

提交回复
热议问题