熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> .NET編程 >> 正文

.net 讀取非標准配置文件的小例子

2022-06-13   來源: .NET編程 
這篇文章介紹了net 讀取非標准配置文件的小例子有需要的朋友可以參考一下  

  代碼如下

復制代碼 代碼如下:
public static string Config(string key) 
       { 
           ExeConfigurationFileMap file = new ExeConfigurationFileMap(); 
           fileExeConfigFilename = @"ProvidersProviderconfig"; 
           Configuration config = ConfigurationManagerOpenMappedExeConfiguration(file ConfigurationUserLevelNone); 
           AppSettingsSection appsection = (AppSettingsSection)configGetSection("appSettings"); 
           return appsectionSettings[key]Value; 
       } 

  
配置文件目錄結構

復制代碼 代碼如下:
<?xml version="" encoding="utf" ?> 
<configuration> 
    <appSettings> 
        <add key="ConnectionString" value="Server=(local);Database=DB;User Id=sa;Password=" /> 
    </appSettings> 
</configuration> 

  
調用

復制代碼 代碼如下:

  
//裡面的參數為配置文件的key  
string strConn=Config("ConnectionString"); 


From:http://tw.wingwit.com/Article/program/net/201311/14052.html
  • 上一篇文章:

  • 下一篇文章:
  • 推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.