同样的问题,在线等
public static T ToObject<T>(params string[] sections) where T : class
{
try
{
if (sections.Any())
{
return Configuration.GetSection(string.Join(":", sections)).Get<T>();
//“IConfigurationSection”未包含“Get”的定义,并且找不到可接受第一个“IConfigurationSection”类型参数的可访问扩展方法“Get”(是否缺少 using 指令或程序集引用?)
}
}
catch (Exception) { }
return null;
}