मैं कॉन्फ़िगरेशन फ़ाइल में मानों तक पहुंचने में सक्षम नहीं हूं।
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>
क्या आपके पास कोई सुझाव है कि मुझे क्या करना चाहिए?