文件名称:读写INI文件DEMO
文件大小:59KB
文件格式:RAR
更新时间:2015-07-20 09:08:47
C#、ini
C#实现对ini文件的读取和写入操作
public string inipath;
[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);
///
【文件预览】:
读写INI文件DEMO
----WindowsApplication1()
--------Form1.Designer.cs(3KB)
--------Program.cs(478B)
--------obj()
--------bin()
--------Form1.cs(817B)
--------Form1.resx(6KB)
--------INI.csproj(3KB)
--------INIClass.cs(2KB)
--------Properties()
----WindowsApplication1.sln(914B)
----WindowsApplication1.suo(25KB)