Rename
editorconfig
This commit is contained in:
@ -46,11 +46,11 @@ public class DistanceLimits : IDistanceLimits
|
||||
string IDistanceLimits.GetCounts()
|
||||
{
|
||||
string result;
|
||||
List<(int Value, string Name)> results = new()
|
||||
{
|
||||
List<(int Value, string Name)> results =
|
||||
[
|
||||
new(_Days, nameof(_Days)),
|
||||
new(_Distance, nameof(_Distance))
|
||||
};
|
||||
];
|
||||
result = string.Join(' ', from l in results orderby l.Value descending select $"{l.Name}_{l.Value};");
|
||||
return result;
|
||||
}
|
||||
|
Reference in New Issue
Block a user