gpt4 book ai didi

c# - 如何获得所有女性?

转载 作者:IT王子 更新时间:2023-10-29 04:17:08 25 4
gpt4 key购买 nike

我想获取性别进行计算,例如男性和女性选项在一列中。我想让所有男性或所有女性进行计算。

我有一个“计算属性”,它为我提供了所有项目的列表以及计算。这是代码:

partial void MeanFemale_Compute(ref string result)
{
// Set result to the desired field value

int totalAge = 0;
int count = 0;

foreach (InsuranceQuotation i in his.DataWorkspace.ApplicationData.InsuranceQuotations)
{
totalAge += i.mAge;
count++;
}

if (count != 0)
{
result = (totalAge / count).ToString();
}

}

我如何过滤这个“计算属性”中的性别。

最佳答案

您可以使用 LINQ。它看起来像这样:

int averageAge =  this.DataWorkspace.ApplicationData.InsuranceQuotations.
Where(iq => iq.Gender == Gender.Female).
Average(iq => iq.mAge);

关于c# - 如何获得所有女性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31820326/

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