I'm trying to make a linq on a dictionary to find a key, I have something like this, and I want to find the value of the "Hello" key:
Dictionary<int, Dictionary<string, string> Datos = new Dictionary<int, Dictionary<string, string>>();
Dictionary<string, string> Dato = new Dictionary<string, string>();
Dato.Add("Hola","Mundo");
Datos.Add(1,Dato);