gpt4 book ai didi

c# - 如何在动态数组中添加项目

转载 作者:太空宇宙 更新时间:2023-11-03 21:18:52 25 4
gpt4 key购买 nike

我需要创建一个返回动态[]的函数

这对我来说很好

    public static dynamic[] GetDonutSeries(this Polls p)
{
return new dynamic[]
{
new {category = "Football",value = 35},
new {category = "Basketball",value = 25},
new {category = "Volleyball",value = 20},
new {category = "Rugby",value = 10},
new {category = "Tennis",value = 10}
};
}

但我需要添加执行不同操作的项目。

像这样

public static dynamic[] GetDonutSeries(this Polls p)
{
dynamic[] result = new dynamic[]();

foreach (PollOptions po in p.PollOptions)
{
result.Add(new {category = po.OptionName,value = po.PollVotes.Count});
}
return result;
}

但是我不能对 dynamic[] 使用 .Add 方法。我该怎么做?

最佳答案

数组没有Add 方法。看来您正在寻找一个 List

public static List<dynamic> GetDonutSeries(this Polls p)
{
List<dynamic> result = new List<dynamic>();

foreach (PollOptions po in p.PollOptions)
{
result.Add(new { category = po.OptionName, value = po.PollVotes.Count });
}
return result;
}

如果您必须返回一个数组,您可以使用result.ToArray()

关于c# - 如何在动态数组中添加项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32161781/

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