我有一些冗长的代码:
private bool AnyUnselectedCombox()
{
bool anyUnselected = false;
foreach (Control c in this.Controls)
{
if (c is ComboBox)
{
if ((c as ComboBox).SelectedIndex == -1)
{
anyUnselected = true;
break;
}
}
}
return anyUnselected;
}
...Resharper 提供了一个优雅的 LINQ 表达式,如下所示:
return this.Controls.OfType<ComboBox>().Any(c => (c as ComboBox).SelectedIndex == -1);
...但是随后的 Resharper 检查说明了它生成的代码(上图):“类型转换是多余的”(指的是“c as ComboBox”部分),因此它最终成为:
return this.Controls.OfType<ComboBox>().Any(c => c.SelectedIndex == -1);
Resharper 不应该生成 Resharper 认可的代码吗?或者它只是有时需要两次传球才能完全“束腰”?