摘要:
以前我提供了一个操作ini文件的类,但是是VB.net版本。以下是我转载的一个C#版本的操作ini文件的类。这里是一个通过调用Windows API来操作ini文件的一个公共类,并用托管代码进行了封装,提供了对ini文件的增删查改功能。using System;using System.IO;using System.Text;using System.Runtime.InteropServices;public class IniFiles{ public delegate void EventHandler(object sender, EventArgs e); public event 阅读全文