使用ConfigurationSettings類來讀取應用程序配置文件的信息時,卻被編譯器提示說:
警告“System.Configuration.ConfigurationSettings.GetConfig(string)”已過時:“This method is obsolete, it has been replaced by System.Configuration!System.Configuration.ConfigurationManager.GetSection”
注意:默認沒有引用ConfigurationManager類,所以找不到System.Configuration命名空間的 ConfigurationManager類.
解決:首先添加加對System.Configuration.dll 文件的引用;
然後,按照vs的提示,進行相關的函數替換