問題:
如何儲存特定於某個應用程式的配置設定可以跨多個應用程式使用的DLL?是否有與 DLL 的“app.config”檔案等效的檔案?
答案:
建立專用設定檔
雖然DLL 沒有與「app.config」直接等效的檔案,但可以建立一個單獨的DLL 的設定檔。此檔案應以“DllName.dll.config”格式命名。
取得設定設定
要從此單獨的檔案存取設定設置,您可以使用以下程式碼:
using System.Configuration; namespace MyDLL { public class ConfigurationHelper { public static string GetSetting(string key) { Configuration config = null; string dllPath = typeof(ConfigurationHelper).Assembly.Location; try { config = ConfigurationManager.OpenExeConfiguration(dllPath); } catch(Exception ex) { // Handle error, likely indicates missing configuration file. } if (config != null) { string value = GetAppSetting(config, "mySetting"); return value; }
此程式碼先嘗試開啟與DLL 關聯的設定檔。如果找到該文件,它將使用「GetAppSetting」方法檢索具有指定鍵的設定:
private static string GetAppSetting(Configuration config, string key) { KeyValueConfigurationElement element = config.AppSettings.Settings[key]; if (element != null) { return element.Value; } return string.Empty; }
部署和輸出
以確保配置部署DLL 時包含文件,請在Visual Studio 專案中將.config 檔案的「複製到輸出目錄」屬性設定為「始終複製」。這將確保檔案與 DLL 一起複製。
以上是如何管理跨多個應用程式使用的 DLL 的配置設定?的詳細內容。更多資訊請關注PHP中文網其他相關文章!