public static void show(System.String descrip, HashedList h)
 {
     System.Console.Out.WriteLine(descrip + " : [" + h.Count + "]");
     Object[] o = h.toArray();
     for (int i = 0; i < o.Length; i += 1)
     {
         System.Console.Out.WriteLine("  " + o[i]);
     }
 }
示例#2
0
 public static void show(String descrip, HashedList h)
 {
     Console.Out.WriteLine(descrip + " : [" + h.Count + "]");
     Object[] o = h.toArray();
     for (int i = 0; i < o.Length; i += 1)
     {
         Console.Out.WriteLine("  " + o[i]);
     }
 }