📜  如何在c#代码示例中动态加载启动文件中的值

📅  最后修改于: 2022-03-11 14:49:18.551000             🧑  作者: Mango

代码示例1
public class FooController : Controller
 {
     private IOptions _config;

     public FooController(IOptions config)
     {
         _config = config ?? throw new ArgumentNullException(nameof(config));
     }

     ...
 }