In my program, I have a class like this:
Class Customer{
double Start;
double Finish;
double Wait;
}
and I created an array of this class:
Customer[] customer = new Customer[300];
How I can sort this array according to Start values Descending or Ascending?
Thanks...