App.config DLL. , , dll /config, dll .
, DLL . , .
private string GetSettingValue(string key)
{
string executingAssembly = Assembly.GetEntryAssembly().GetName().Name;
string sectionName = "applicationSettings/" + executingAssembly
+ ".Properties.Settings";
ClientSettingsSection section =
(ClientSettingsSection)ConfigurationManager.GetSection(sectionName);
SettingElement setting = section.Settings.Get(key);
return setting.Value.ValueXml.InnerText;
}
, dll , . .