char SectionNames[MAX_PATH],*pSectionName; ZeroMemory(SectionNames,MAX_PATH); GetPrivateProfileSectionNames(SectionNames,MAX_PATH,"config.ini"); int i=0; for (char* Name = SectionNames;*Name !='\0';Name+=strlen(Name)+1,i++) { m_List.InsertItem(i…
C#中读写INI文件 c#的类没有直接提供对ini文件的操作支持,可以自己包装win api的WritePrivateProfileString和GetPrivateProfileString函数实现.下面提供一个包装类,可以直接使用. using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Runtime.InteropServices; using Sys…