Seth
Results
1
comments of
Seth
When using method chains, the indentation is even inconsistent. ```csharp list.Select(obj => new { obj.Name, obj.Value }) .First(); list.OrderBy(obj => obj.Value) .Select(obj => new { obj.Name, obj.Value }) .First(); ```