am in a middle of project , and am kind of stuck on the problem,
i need to sort a list in C#
the list structure is
public List < double[] > DataList = new List < double[] >();
now i want to sort this list on the bases of the last index of double array in the list
like
2|3|5|6|8
2|3|5|6|9
2|3|5|6|5
2|3|5|6|12
the output should be some thing like this
2|3|5|6|12
2|3|5|6|9
2|3|5|6|8
2|3|5|6|5