0
how to sort two dimensional array ascending by row in c#. I'm newbie
2 odpowiedzi
+ 2
You can look up if there's a sort method/function and how to use it.
Otherwise, you'll need to iterate through the array and compare the values.
+ 1
https://www.sololearn.com/learn/774/?ref=app
Learn sorting algorithms here
then apply it to your program