❔ How would I go about looping through a json file and search for the highest value in a category?
🙂
3 Replies
I know how to pull the values but not sure how I would compare all the values
LINQ would probably be the easiest
.MaxBy(...)
for example
Or .OrderBy(...).First()
for older versions of .NETWas this issue resolved? If so, run
/close
- otherwise I will mark this as stale and this post will be archived until there is new activity.