Example #1
0
 static void Main(string[] args)
 {
     TelephoneBook tb = new TelephoneBook();
     tb.Sort();
     tb.Display();
     tb.Filter("T");
     tb.Display();
     tb.LargerThen(4);
     tb.Display();
 }