Respostas:
os artigos postados por Ricky são muito bons, mas infelizmente não respondem à sua pergunta.
Para resolver seu problema, você deve tentar este trecho de código:
ExeConfigurationFileMap configMap = new ExeConfigurationFileMap();
configMap.ExeConfigFilename = @"d:\test\justAConfigFile.config.whateverYouLikeExtension";
Configuration config = ConfigurationManager.OpenMappedExeConfiguration(configMap, ConfigurationUserLevel.None);
Se precisar acessar um valor dentro da configuração, você pode usar o operador de índice:
config.AppSettings.Settings["test"].Value;
ConfigurationManager.ConnectionStrings
. Em vez disso, você deve ler o valor do config
objeto retornado da última instrução acima.
O arquivo de configuração é apenas um arquivo XML, você pode abri-lo:
private static XmlDocument loadConfigDocument()
{
XmlDocument doc = null;
try
{
doc = new XmlDocument();
doc.Load(getConfigFilePath());
return doc;
}
catch (System.IO.FileNotFoundException e)
{
throw new Exception("No configuration file found.", e);
}
catch (Exception ex)
{
return null;
}
}
e depois recuperando valores por:
// retrieve appSettings node
XmlNode node = doc.SelectSingleNode("//appSettings");
throw new Exception("No configuration file found.", e);
.
whateverYouLikeExtension
, você quer dizer que deve comer algo depoisconfig.
?