[.NET Core] 简单读取 json 配置文件

简单读取 json 配置文件 背景

  目前发现网上的 .NET Core 读取配置文件有点麻烦,自己想搞个简单点的。

  .NET Core 已经不使用之前的诸如 app.config 和 web.config 等 xml 形式的配置文件,一致采用 json 格式来存储配置文件信息。

[.NET Core] 简单读取 json 配置文件

 

json 文件 demo

  appsettings.json:

{ "name": "wen", "age": 26, "family": { "mother": { "name": "娘", "age": 55 }, "father": { "name": "爹", "age": 56 } } }

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zyxdgd.html