'System.Configuration.ConfigurationSettings.AppSettings' is obsolete

前端 未结 12 1880
被撕碎了的回忆
被撕碎了的回忆 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:59

    I had the same problem in a C# project and I fixed it by writing appSettings instead of AppSettings in the XML file (camelCase expected) in the tag

    
      
    
    

    After all C# is case sensitive

提交回复
热议问题