By alphabetically by length I mean as follows:
given: { "=", "==>>", "=>>", "=>", "!>" }
I want to get out:
!>
=
=>
=>>
==>>
I'm currently just using OrderBy(x => x.Length).ToArray()
anyone got a better lambda?
Is this reasonably possible? lol, I'm not sure what the rule conventions here would be :-(