app.config文件的用法

  1. //要添加引用“System.configuration“
  2.                 //app.config中要追加以下内容:
  3.                   //<appSettings>
  4.                   //  <add key="filePath" value="C:/test/"/>
  5.                   //</appSettings>
  6. string path=System.configuration.ConfigurationManager.AppSettings.Get("filePath").ToString();
 

你可能感兴趣的:(app.config文件的用法)