在 App.config 中新增一筆資料
<appSettings>
<add key="KEY" value="VALUE"/>
</appSettings>
將「System.Configuration」加入參考
加入:using System.Configuration;
利用下列程式碼,就能取出 App.config 中的內容
string Value_ = ConfigurationManager.AppSettings["KEY"];
執行後,Value_ 的值將會是 VALUE
沒有留言:
張貼留言