using System.Collections.Generic;
public class Program {
public static void Main() {
var ht = new Dictionary<string, string>();
ht.Add("index", "0");
ht.Add("tipo", "1");
string tipo = ht["tipo"];
}