gpt4 book ai didi

c# - 查找整数列表中是否存在整数

转载 作者:IT王子 更新时间:2023-10-29 03:46:40 25 4
gpt4 key购买 nike

我有这个代码:

  List<T> apps = getApps();

List<int> ids;

List<SelectListItem> dropdown = apps.ConvertAll(c => new SelectListItem
{
Selected = ids.Contains(c.Id),
Text = c.Name,
Value = c.Id.ToString()
}).ToList();


ids.Contains

似乎总是返回 false,即使数字确实匹配

有什么想法吗?

最佳答案

如果你只需要一个真/假的结果

bool isInList = intList.IndexOf(intVariable) != -1;

如果列表中不存在 intVariable 则返回 -1

关于c# - 查找整数列表中是否存在整数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3924268/

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