找传奇、传世资源到传世资源站!

ini文件的读写操作

8.5玩家评分(1人评分)
下载后可评
介绍 评论 失效链接反馈

生成dll后,在源码中直接调用就可以,非常方便

public void IniWriteValue(string section, string key, string iValue)public string IniReadValue(string section, string key)public byte[] IniReadValues(string section, string key)【底层实现】 #region 声明读写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 defVal, StringBuilder retVal, int size, string filePath); [DllImport("kernel32")] private static extern int GetPrivateProfileString(string section, string key, string defVal, Byte[] retVal, int size, string filePath); #endregion

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复