gpt4 book ai didi

c# - 已添加具有相同键的项目 c# 错误

转载 作者:行者123 更新时间:2023-11-30 19:33:15 27 4
gpt4 key购买 nike

foreach (Benefit bene in claim.SubClaimFolderCollection[0].BenefitsFolder.BenefitCollection) 
{
Dictionary<string, object> searchBeneficiary =
new Dictionary<string,object>();

searchBeneficiary.Add("rli_beneficiariesid", ((Guid)claimant.GetValue("rli_subclaimfolderid", true)));
}

它给我这个错误

An item with the same key has already been added while adding an item to dictionary.

最佳答案

您确定错误来自此处吗?看起来每次迭代您都在创建一个新字典,向其中插入一个条目,然后丢弃该字典。那不应该给出这个错误,而且它也不太可能是你打算做的。

如果您想将集合转换为字典,我建议您使用 Enumerable.ToDictionary方法(需要 .NET 3.5)。

关于c# - 已添加具有相同键的项目 c# 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4018656/

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