Property | Value |
---|---|
Id | RCS1112 |
Category | Simplification |
Severity | Info |
IEnumerable<string> x = items.Where(f => Foo(f)).Where(f => Bar(f));
IEnumerable<string> x = items.Where(f => Foo(f) && Bar(f));
(Generated with DotMarkdown)
Property | Value |
---|---|
Id | RCS1112 |
Category | Simplification |
Severity | Info |
IEnumerable<string> x = items.Where(f => Foo(f)).Where(f => Bar(f));
IEnumerable<string> x = items.Where(f => Foo(f) && Bar(f));
(Generated with DotMarkdown)