using System.Collections.Generic;
public static void Main()
'description':'overcast clouds',
Class1.WeatherMain vreme = JsonConvert.DeserializeObject <Class1.WeatherMain>(json);
public double lat { get; set; }
public double lon { get; set; }
public int id { get; set; }
public string main { get; set; }
public string description { get; set; }
public string icon { get; set; }
public coord coord { get; set; }
public List<weatherinfo> weather { get; set; }
Console.WriteLine("lon: {0}", this.coord.lon);
Console.WriteLine("lat: {0}", this.coord.lat);
Console.WriteLine("id: {0}", string.Join(Environment.NewLine,this.weather.Select(c=>$"Weather:{c.main},Description:{c.description}")));