这是一个一般性问题,但这里是一例,寻求解决:
我有<条码>理论与设计;int, List<string>>。 我想对我提出各种看法。 我想要一种能够照顾到多种准则问题的方法,例如:
from x in Dictionary
where x.Value.Contains("Test")
select x.Key
from x in Dictionary
where x.Value.Contains("Test2")
select x.Key
• 寻找类似方法:
public int GetResult(**WhatGoesHere** filter)
{
return from x in Dictionary.Where(filter)
select x.Key;
}
用于:
int result;
result = GetResult(x => x.Value.Contains("Test"));
result = GetResult(x => x.Value.Contains("Test2"));
<>?