Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 588 Bytes

RCS1200.md

File metadata and controls

28 lines (18 loc) · 588 Bytes

RCS1200: Call 'Enumerable.ThenBy' instead of 'Enumerable.OrderBy'

Property Value
Id RCS1200
Category Usage
Severity Info

Example

Code with Diagnostic

var x = items.OrderBy(f => f.Surname).OrderBy(f => f.Name); // RCS1200

Code with Fix

var x = items.OrderBy(f => f.Surname).ThenBy(f => f.Name);

See Also

(Generated with DotMarkdown)