http://tech.ccidnet.com/pub/article/c294_a26002_p1.html呵呵~

解决方案 »

  1.   

    api
    现成的
    去网上搜一下就有了
      

  2.   

    using System; 
    using System.IO; 
    using System.Runtime.InteropServices; 
    using System.Text;namespace Ini {  public class IniFile  { 
    //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文件名
    public IniFile(string INIPath)  {  path = INIPath;  }   
    //写INI文件
    public void IniWriteValue(string Section,string Key,string Value)  {  WritePrivateProfileString(Section,Key,Value,this.path);  }            
    //读取INI文件指定 
    public string IniReadValue(string Section,string Key)  {  StringBuilder temp = new StringBuilder(255);  int i = GetPrivateProfileString(Section,Key,"",temp,255,this.path);  return temp.ToString();  }  } }
      

  3.   

    给你一个建议~要是需要做配置文件,那你还是用xml方便啊