im using the next code:
dynamic jsonObj = JsonConvert.DeserializeObject(reader.ReadToEnd());
foreach (var item in jsonObj)
{
Console.WriteLine("");
}
Where reader.ReadToEnd() has a json string.
But i have an error on foreach,
Error 13 foreach statement cannot operate on variables of type 'System.Collections.IEnumerable' because 'System.Collections.IEnumerable' does not contain a public definition for 'GetEnumerator' C:\Users\myUser\Desktop\app\appRecept\Paises.cs 47 29 appPreregistro