15
AppSettings को .config फ़ाइल से मान मिलता है
मैं कॉन्फ़िगरेशन फ़ाइल में मानों तक पहुंचने में सक्षम नहीं हूं। Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None); var clientsFilePath = config.AppSettings.Settings["ClientsFilePath"].Value; // the second line gets a NullReferenceException .config फ़ाइल : <?xml version="1.0" encoding="utf-8" ?> <configuration> <appSettings> <!-- ... --> <add key="ClientsFilePath" value="filepath"/> <!-- ... --> </appSettings> </configuration> क्या आपके पास कोई …