다음은 키가 Isinit이고 값이 false인 매개변수를 정의하는 app.config 또는 web.config의 정의입니다.
;
<키 추가 ="IsInit" value="false"/>
다음은 구성 파일 쓰기 방법 정의입니다:
쓰기:
읽기:internal void settingApp_write(string key, string val) { System.Configuration.Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None); config.AppSettings.Settings["IsInit"].Value = val; config.Save(ConfigurationSaveMode.Modified); ConfigurationManager.RefreshSection("appSettings"); }
internal string settingApp_read(string key) { var val = ConfigurationManager.AppSettings[key]; return val; }
쓰기 테스트 :
settingApp_write("IsInit","true");
테스트 실행:
var settings = settingsApp_read("Isinit");
이 수준 수정은 프로젝트 수준 구성 파일 수정이며, 이는 최종 프로그램 Bin 디렉터리에 있는 구성 파일의 작업입니다.
C#에서 구성 파일을 작동하는 구체적인 방법에 대한 더 많은 관련 기사를 보려면 PHP 중국어 웹사이트를 주목하세요!