将字典吹出到列表中
我有一本带有此签名的字典:
Dictionary<decimal, int>
里面的项目看起来像这样:
90, 2
60, 3
30, 4
20, 1
我需要将其扩展到具有此签名的列表:
List<double>
里面的项目看起来像这样:
90
90
60
60
60
30
30
30
30
20
关于如何以优雅而有效的方式做到这一点的任何想法?
I have a dictionary with this signature:
Dictionary<decimal, int>
Items inside it look like this:
90, 2
60, 3
30, 4
20, 1
I need to blow this out to a list that has this signature:
List<double>
Items inside would look like this:
90
90
60
60
60
30
30
30
30
20
Any ideas on how to do this in an elegant and efficient way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
尝试以下操作
Try the following