gpt4 book ai didi

c# - 将 IDictionary 转换为 IEnumerable

转载 作者:行者123 更新时间:2023-11-30 20:51:30 25 4
gpt4 key购买 nike

我如何转换 IDictionary<Guid,string>IEnumerable<SelectListItem> ?我想将字符串用作 SelectListItem .

最佳答案

如果你想使用guid作为值,你可以使用

dictionary.Select(x => new SelectListItem  { Text = x.Value, Value = x.Key })

关于c# - 将 IDictionary<Guid,string> 转换为 IEnumerable<SelectListItem>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21630446/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com