我有这样的结构
public struct MyStruct
{
public string Name;
//More fields and construtors
}
现在,如果我有List<MyStruct>
办法使用Contains()
列表功能?
这不会编译:
if(_myStructList.Contains(x => x.Name == "DAMN!")){//DO STUFF}
这是错误:
Cannot convert lambda expression to type 'MyStruct' because it is not a delegate type
我想那这不适用于结构?!