1. 程式人生 > >C#中App.config文件配置獲取

C#中App.config文件配置獲取

class tin sys div log csharp sin 最新 frame

最新的framework使用如下方法:

using System.Configuration;

ConfigurationManager.AppSettings["key"];

  

App.config中,如下配置:

 <appSettings>
    <add key="key" value="value"/>
  </appSettings>

C#中App.config文件配置獲取