fork download
  1. using System;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. class Program
  5. {
  6. static void Main(string[] args)
  7. {
  8. Hashtable hh=new Hashtable();
  9. hh.Add(1,2);
  10. hh.Add('A','B');
  11. hh.Add(2,3);
  12. foreach(DictionaryEntry d in hh)
  13. {
  14. Console.Write(d.Key+""+d.Value);
  15. }
  16.  
  17. Console.ReadLine();
  18. }
  19. }
Success #stdin #stdout 0.04s 23960KB
stdin
Standard input is empty
stdout
AB2312