摘要: /// /// Ini文件操作类 /// public class Ini { // 声明INI文件的写操作函数 WritePrivateProfileString() [System.Runtime.InteropServices.DllImport("kernel32")] private static extern long WritePrivateProfileString(string section, string key, string val, string filePath); // ... 阅读全文
posted @ 2013-09-18 10:01 Go和分布式IM 阅读(219) 评论(0) 推荐(0) 编辑