C# - 检查列表是否包含属性等于值的对象?

时间:2016-03-31 04:04:24

标签: c# reflection

是否有一种不涉及循环的简写方法?

public enum Item { Wood, Stone, Handle, Flint, StoneTool, Pallet, Bench  }

public struct ItemCount
{
    public Item Item;
    public int Count;
}

private List<ItemCount> _contents;

如下所示:

if(_contents.Contains(ItemCount i where i.Item == Item.Wood))
{
    //do stuff
}

2 个答案:

答案 0 :(得分:6)

您不需要反思,只需使用Linq:

if (_contents.Any(i=>i.Item == Item.Wood))
{
    //do stuff
}

如果您需要具有该值的对象,则可以使用Where

var woodItems = _contents.Where(i=>i.Item == Item.Wood);

答案 1 :(得分:3)

您可以使用Linq扩展方法Any执行此操作。

if(_contents.Any(i=> i.Item == Item.Wood))
{
    // logic   
}

如果您需要匹配的对象,请执行此操作。

var firstMatch = _contents.FirstOrDefault(i=> i.Item == Item.Wood);

if(firstMatch != null)
{
    // logic   
    // Access firstMatch  
}