wpf - Get values from App Config file
问题 How to get values from App.Config. Code: <configuration> <appSettings> <add key="ShowRoomCode" value="1000"/> <add key="FolderPath" value="D:\\Images\\Book\\"/> </appSettings> </configuration> string imageFolderPath = ConfigurationManager.AppSettings["FolderPath"]; But it returns null value. Config file is in the Same project. 回答1: If you expand the Properties section of Visual Studio and double click the settings section, you will be able to add custom settings which end up like so in the