fork(1) download
  1. using System;
  2. using System.Collections.Generic;
  3.  
  4. public class Test
  5. {
  6. public static void Main()
  7. {
  8. var a = new Dictionary<string, dynamic>();
  9.  
  10. a["key1"] = true;
  11. a["key2"] = false;
  12. a["key3"] = new List<dynamic> { new dynamic [] {1, 2, 3} };
  13.  
  14. Console.WriteLine(a["key3"][0][1]);
  15. }
  16. }
Success #stdin #stdout 0.18s 143616KB
stdin
Standard input is empty
stdout
2