fork download
  1. using System.Collections.Generic;
  2.  
  3. public class Program {
  4. public static void Main() {
  5. var ht = new Dictionary<string, string> { ["index"] = "0", ["tipo"] = "1" };
  6. string tipo = ht["tipo"];
  7. }
  8. }
  9.  
  10. //https://pt.stackoverflow.com/q/134169/101
Success #stdin #stdout 0.01s 14132KB
stdin
Standard input is empty
stdout
Standard output is empty