我有一个List
定义为:
List<Dictionary<string,object>>()
这List
被填充在 a 中foreach loop
,并且基本上包含property names and values
from ProperyInfo
。
在另一个foreach loop
中,我想再次遍历属性并检查是否存在包含与我正在寻找的值对应的键的字典。例如:
foreach(var item in controls)
{
if(item !=null && list.Contains(...)) //What do I put in here
{
}
else
{
}
}
controls
是具有一个属性的List<Control>
类。 指一。Control
Name
item
Control
我想过做list.Contains(item.Name)
,但这显然行不通。