C#读写INI文件信息

时间:2013-05-06 13:39:20
【文件属性】:

文件名称:C#读写INI文件信息

文件大小:2KB

文件格式:TXT

更新时间:2013-05-06 13:39:20

C#

//文件INI名称 //public string Path; /**/////声明读写INI文件的API函数 [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文件名


网友评论