1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | using System; using System.Runtime.InteropServices; using System.Text; namespace Ini { /// <summary> /// Create a New INI file to store or load data /// </summary> public class IniFile { public string path; [DllImport( "kernel32" )] private static extern long WritePrivateProfileString( string section, string key, string val, string filePath); [DllImport( "kernel32" )] private static extern int GetPrivateProfileString( string section, string key, string def, StringBuilder retVal, int size, string filePath); /// <summary> /// INIFile Constructor. /// </summary> /// <param name="INIPath"> public IniFile( string INIPath) { path = INIPath; } /// <summary> /// Write Data to the INI File /// </summary> /// <param name="Section"> /// Section name /// <param name="Key"> /// Key Name /// <param name="Value"> /// Value Name public void IniWriteValue( string Section, string Key, string Value) { WritePrivateProfileString(Section,Key,Value, this .path); } /// <summary> /// Read Data Value From the Ini File /// </summary> /// <param name="Section"> /// <param name="Key"> /// <param name="Path"> /// <returns></returns> public string IniReadValue( string Section, string Key) { StringBuilder temp = new StringBuilder(255); int i = GetPrivateProfileString(Section,Key, "" ,temp, 255, this .path); return temp.ToString(); } } } |
INI 파일에 설정을 저장해두자. kernel32.dll을 Import하니 이리도 간단하다 캬~
[출처]CODEPROJECT : An INI file handling class using C#