Click here to Skip to main content
15,895,800 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How can sort a custom list form my main class?


C#
public partial class frmSchool : Form
    {
private List<student> sFiles = new List<student>();
..
...

C#
class student
    {
        public string sname;
        public char fileName;
        public byte[] binVal;
        public byte [] Out;
        public int rand;
       

        public OCRChar(string iSname,char iFileName, byte[] iBinVal, byte[] iOut,int iRand)
        {
            this.sname = iSname;
            this.fileName = iFileName;
            this.binVal = iBinVal;
            this.Out = iOut;
            this.rand = iRand;
            //this.salary = iSalary;
        }
    }
Posted

1 solution

 
Share this answer
 
Comments
datt265 18-Nov-12 13:32pm    
To use deligates what should I change ?
ridoy 18-Nov-12 13:43pm    
try with sFiles.Sort(delegate(student c1, student c2) { return c1.sname.CompareTo(c2.sname); });
you also can try with lambda expression mentioned in 1st link..

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900