I have a record class like this :
public class RecordInfo
{
public String CDate;
public String Patient_ID;
public Color Zone;
public String Fname;
public String Lname;
public Int64 ImgSize;
public String ImagePrefix;
public String ImagePath;
public String Sex;
public String TZ;
}
and I made a list of RecordInfo like this :
List<RecordInfo> PatientRecords = new List<RecordInfo>();
and I added records to it, but I would like to sort that list based on Patient_ID, sex, Fname, etc.....
Any idea how can I do that?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…