我有一本字典fooDictionary<string, MyObject>.
我正在过滤fooDictionary以获取MyObject具有该属性的特定值的唯一值.
//(Extension method is a extension method that I made for the lists
//(PS: ExtensionMethod returns only 1x MyObject))
fooDictionary.Values.Where(x=>x.Boo==false).ToList().ExtensionMethod();
Run Code Online (Sandbox Code Playgroud)
但我也希望获得已经过滤的密钥MyObject's.我怎样才能做到这一点?