Got it working. Also thanks to Brian.
public async Task<Caselist> readData()
{
var file = Path.Combine(System.Environment.GetFolderPath(System.Environment.SpecialFolder.Personal), "data_covid_dashboard.json");
try
{
System.Console.Write("Reading data...");
using (StreamReader fileContent = new StreamReader(file))
{
var json = fileContent.ReadToEnd();
return JsonConvert.DeserializeObject<Caselist>(json);
}
}
catch (Exception)
{
throw;
}
}
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…