gpt4 book ai didi

c# Dictionary 如何在不知道键的情况下循环遍历项目

转载 作者:太空狗 更新时间:2023-10-29 20:04:37 26 4
gpt4 key购买 nike

<分区>

我有一个:

var selectedDates = new Dictionary<string, string>();
selectedDates.Add("2014-06-21", DateTime.Now.ToLongDateString());
selectedDates.Add("2014-07-21", DateTime.Now.AddDays(5).ToLongDateString());
selectedDates.Add("2014-08-21", DateTime.Now.AddDays(9).ToLongDateString());
selectedDates.Add("2014-09-21", DateTime.Now.AddDays(14).ToLongDateString());

如何在不知道 key 的情况下循环遍历项?

For example I want to get the value of the item[0]

如果我这样做:

var item = selectedDates[0].value; // I get an error

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