I have an array of strings that are formated as "ColX=Name=Value", where X is a number and X >= 4.
I'd like to sort the array in ascending order of that X, I tried using
int colNbr = int.parse(string.Split('=')[0].Substring(3))
to retreive the value of X, but then I don't know how to order the strings :/
Any easier recommendations appreciated :)