Bind a IConfigurationSection to an complex object without aspnetcore
问题 I have a NetCore console application and want to read the appsettings.json and parse a section as List<Param> (without Dependency Injection or AspNetCore). I already tried How do I bind a multi level configuration object using IConfiguration in a .net Core application? but it seems like .Get<T>() got removed from netcoreapp1.1 IConfigurationSection myListConfigSection = configurationRoot.GetSection("ListA"); List<Param> paramList; //Get does not exist //paramList = myListConfigSection.Get