예제 #1
0
 private void printMenu()
 {
     for (int i = 0; i < commands.size(); i++)
     {
         Command c    = commands.values().ElementAt(i);
         String  line = String.Format("{0} :{1,1}", c.getKey(), c.getDescription());
         Console.WriteLine(line);
     }
 }