SIMPLE C#/라이브러리 (2) 썸네일형 리스트형 C# ini File Read/Write (UTF-8) Source : https://gitlab.com/open-class/arSetting.gitContact : tindevil@nate.com C# 에서 INI 파일을 Read/Write 하기 위해서는 위와 같은 WIn32 API 를 사용해야 합니다. [DllImport("kernel32", CharSet = CharSet.Unicode)] static extern long WritePrivateProfileString(string Section, string Key, string Value, string FilePath); [DllImport("kernel32", CharSet = CharSet.Unicode)] static extern int GetPrivateProfileString(string S.. [ arSetting ] XML파일을 이용하여 설정을 저장하자. Source : https://gitlab.com/open-class/arSetting.gitContact : tindevil@nate.com 이 클래스는 프로그램의 설정을 저장하는 기능을 합니다.원래 c# 에는 Properties.setting 이라는 설정 파일을 제공 하지만 debug/release 모드 별로 파일이 별도 관리되며 흠 뭔가 실 사용에서 불편한 점이 있어 개발을 한 클래스 입니다. 테스트를 하려면 우선 하단의 Download 의 adSetting.Net4.dll 을 다운로드 받습니다..net framework 는 4.x 를 권장합니다.(다른 버져을 사용하려면 소스를 이용하여 빌드 해야 합니다) 사용을 하기위해서는 setting 클래스를 상속하는 클래스를 생성 해야 합니다.저는 보통 CS.. 이전 1 다음