Beispiel #1
0
 public static void Main()
 {
     mySortedHashtable coll = new mySortedHashtable();
     coll.FillIn(2, "two");
     coll.FillIn(1, "one");
     coll.FillIn(5, "five");
     coll.FillIn(3, "three");
     coll.TestSortKeyValues();
 }
Beispiel #2
0
    public static void Main()
    {
        mySortedHashtable coll = new mySortedHashtable();

        coll.FillIn(2, "two");
        coll.FillIn(1, "one");
        coll.FillIn(5, "five");
        coll.FillIn(3, "three");
        coll.TestSortKeyValues();
    }