使用獨立的 .NET 設定檔
問題:
如何存取未連結到特定組件的獨立 .NET 設定檔?
解:
ExeConfigurationFileMap
類別提供了解決方案。 以下是開啟和讀取自訂設定檔的方法:
<code class="language-csharp">ExeConfigurationFileMap configMap = new ExeConfigurationFileMap(); configMap.ExeConfigFilename = @"d:\test\justAConfigFile.config.whateverYouLikeExtension"; // Replace with your file path Configuration config = ConfigurationManager.OpenMappedExeConfiguration(configMap, ConfigurationUserLevel.None);</code>
請記得將佔位符路徑替換為設定檔的正確位置。 擴展名可以是您選擇的任何內容。
使用索引器存取設定非常簡單:
<code class="language-csharp">string value = config.AppSettings.Settings["test"].Value;</code>
這將檢索與設定檔的 AppSettings
部分中的鍵「test」關聯的值。
以上是如何存取自訂 .NET 設定檔?的詳細內容。更多資訊請關注PHP中文網其他相關文章!