DLL에서 자체 프로젝트 구성 파일로 정보 읽기

534 단어 Demo
최근 프로젝트는 각 dll이 자신의 프로필을 읽고 다음과 같은 데이터 처리를 하려고 합니다.
	string temp = string.Empty; //  
            var path = System.Reflection.Assembly.GetExecutingAssembly().Location.ToString();
            try
            {
                System.Configuration.Configuration config = System.Configuration.ConfigurationManager.OpenExeConfiguration(path);
                temp = config.ConnectionStrings.ConnectionStrings[key].ConnectionString;//  
            }
            catch (Exception)
            {
            }

좋은 웹페이지 즐겨찾기