'System.Configuration.ConfigurationSettings.AppSettings' is obsolete

前端 未结 12 1850
被撕碎了的回忆
被撕碎了的回忆 2020-12-13 03:22

I got the following warning

\'System.Configuration.ConfigurationSettings.AppSettings\' is obsolete: \'\"This method is obsolete, it has been replace

12条回答
  •  自闭症患者
    2020-12-13 03:58

    as its a warning i dont think it matters unless you have turned off a treat warnings as errors setting

    add a reference to System.Configuration

    all you have to do is to update to the latest code so where you used ConfigurationSettings.AppSettings[""] change to ConfigurationManager.AppSettings[""]

    and this should work

提交回复
热议问题