标签: .net configuration-files
我想从xml字符串或流而不是文件创建Configuration对象。但据我所知,ConfigurationManager需要一个文件路径来实例化一个Configuration对象。有没有人知道从文件以外的东西创建配置对象的方法?
答案 0 :(得分:1)
只需使用System.IO将流保存到文件中,然后使用
System.IO
ConfigurationManager.OpenMappedExeConfiguration(new ExeConfigurationFileMap(filename))
http://msdn.microsoft.com/en-us/library/system.configuration.configurationmanager.openmappedexeconfiguration(v=VS.90).aspx