질문:
하나의 스토어 구성 설정을 어떻게 특정 여러 애플리케이션에서 사용할 수 있는 DLL이 있습니까? DLL용 'app.config' 파일에 해당하는 파일이 있습니까?
답변:
전용 구성 파일 생성
DLL의 경우 'app.config'와 직접적으로 동등한 것은 없지만 DLL에 대해 별도의 구성 파일을 생성할 수 있습니다. 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 중국어 웹사이트의 기타 관련 기사를 참조하세요!