app.config中的connectionstring

來源:互聯網
上載者:User
app.config 類似於web.config
在.NET 2.0中對設定檔app.config檔案的讀寫變得相當簡單了,在建立一個新的項目後VS2005會自動組建組態檔案(Settings.settings)及app.config,如沒有請:右鍵項目--屬性--設定裡添加一條配置資訊,VS2005將自動產生這些檔案:

Setting.cs
namespace WindowsApplication1.Properties 
{
    internal sealed partial class Settings : 
             global::System.Configuration.ApplicationSettingsBase 
    {
       private static Settings defaultInstance = ((Settings)
          (global::System.Configuration.ApplicationSettingsBase.Synchronized(
           new Settings())));

       public static Settings Default 
       {
          get { return defaultInstance; }
       }

       [global::System.Configuration.UserScopedSettingAttribute()]
       [global::System.Configuration.DefaultSettingValueAttribute("Form1")]
       public string testSetting 
       {
          get { return ((string)(this["testSetting"]));   }
          set { this["testSetting"] = value;              }
       }
   }
}
VS2005基本都完成了,現在我們讀寫時就只需要寫幾行代碼就行了:
            Properties.Settings config = Properties.Settings.Default;
            //讀取
            string str = config.testSetting;
            //寫入
            config.testSetting = "test value";
            config.Save();

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.