Personeller yaşına göremi sıralansın yoksa isimlerine göre mi ? Array sınıfının Sort metoduna istediğimiz  kritere göre sıralama yapmasını söyleyebilir miyiz? Buyrun...

class Program
{
    private static void Main(string[] args)
    {
        Personel[] mudurler = {new Personel("ali", 33), new Personel("kaan", 22), new Personel("cemil", 32)};
        Array.Sort(mudurler);
        foreach (Personel p in mudurler) {
            Console.WriteLine(p.Name);
        }
    }
}
class Personel : IComparable
{
    private string mName;
    public string Name {
        get { return mName; }
        set { mName = value; }
    }
    private int mYas;
    public int Yas {
        get { return mYas; }
        set { mYas = value; }
    }
    public int CompareTo(object obj)
    {
        Personel p = (Personel)obj;
        return mYas.CompareTo(p.Yas);
    }
}

// Yaşa göre sıralamak için
public int CompareTo(object obj)
{
    Personel p = (Personel)obj;
    return mName.CompareTo(p.mName);
}
public Personel(string name,int yas)
{
    mName = name;
    mYas = yas;
}



 
Saturday, April 23, 2011 1:22:27 PM (GTB Daylight Time, UTC+03:00)
doxycycline order online 8[ Ultram 17853
Sunday, April 24, 2011 6:16:04 AM (GTB Daylight Time, UTC+03:00)
car insurance ole car insurance quotes >:-OOO
Tuesday, April 26, 2011 3:10:06 AM (GTB Daylight Time, UTC+03:00)
Ultram 6141 Levitra =]
Wednesday, April 27, 2011 1:42:10 PM (GTB Daylight Time, UTC+03:00)
car insurance quotes 8543 auto insurance =OO
Saturday, April 30, 2011 2:15:46 AM (GTB Daylight Time, UTC+03:00)
car insurance quotes soco auto insurance cwje
Saturday, April 30, 2011 9:54:04 AM (GTB Daylight Time, UTC+03:00)
life insurance %-[ car insurance jvs auto insurance quotes 457927 auto insurance quotes kuk
Name
E-mail
Home page

Comment (HTML not allowed)  

Enter the code shown (prevents robots):

Live Comment Preview