C#設定檔config的使用

來源:互聯網
上載者:User

標籤:datetime   work   節點   setting   資料庫   1.0   設定檔   str   encoding   

做程式的時候總會有一些參數,可能會調整,這時候一般情況下我都會寫在設定檔裡,這樣方便一點。

 設定檔的讀取

<?xml version="1.0" encoding="utf-8" ?><configuration>  <connectionStrings>    <add name="VAVOracleConnectionString" connectionString="Data Source=192.168.0.1/radiodb;Persist Security Info=True;User ID=viv;Password=123456"/>    <add name="VAVOracleWeixinConnectionString" connectionString="Data Source=192.168.0.2/radiodb;Persist Security Info=True;User ID=viv;Password=123456"/>  </connectionStrings>  <appSettings>    <add key ="CNETWORKID" value ="4205"/>    <add key ="DATETIME" value ="14:28"/>  </appSettings></configuration>

1、最常用的是資料庫的連結字串,一般情況下,都會寫在設定檔裡的connectionStrings節點下

   擷取資料庫連接字串:

 public static string connectionString = ConfigurationManager.ConnectionStrings["VAVOracleWeixinConnectionString"].ToString();

2、用到的參數,我寫在了appSettings節點下

  擷取參數:

string dateTime = ConfigurationManager.AppSettings["DATETIME"].ToString();

 

C#設定檔config的使用

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.