Hi i have been pondering the sorting of string, using linq, which is in the format of
L-NN-L-NN-L
L= A->Z (for all three placements)
NN = 1->99 (first NN)
NN = 1->99 (second NN group by odds then evens)
The code i have so far has brought me to the of running a foreach loop on the first L and adding to a List the sorted arrangement, based on the remaining NN-L-NN-L structure. It would be nice if the sorting of the NN-L-NN-L was a one-liner
any thoughts on this? |Thanks