C 讀取INI檔案

2022-04-09 18:26:22 字數 979 閱讀 7135

廢話不多說,直接上**

1:引入命名空間

system.runtime.interopservices

system.io

2:寫乙個類 inihelper

public class inihelper

else

}/// /// 寫入ini檔案

///

/// 名稱

/// 關鍵字

/// 預設值

/// ini檔案位址

///

public static bool setvalue(string section, string key, string value, string inifilepath)

if (file.exists(inifilepath) == false)

long opstation = writeprivateprofilestring(section, key, value, inifilepath);

if (opstation == 0)

else

}}

5:可以手動新建ini檔案,也可自動建立ini檔案,博=主比較懶,直接手動建立的

我ini檔案是這樣配置的:

[我的資料]

myid=9527

4:直接呼叫

string myid = console.readline();

//寫入檔案

string file = system.environment.currentdirectory + @"\config.ini";

if (file!=null)

console.writeline("我輸入的id為",myid);

//讀取檔案

if (file != null)

"+myid);

console.readline();

}

C 讀取INI檔案

class inifile public bool setint string szsection,string szkey,int ival public bool setstring string szsection,string szkey,string szval public uint32...

C 讀取INI檔案

由於在c 並沒有提供專門讀取ini檔案的api,所以需要間接呼叫c 的api來進行讀取。using system using system.collections.generic using system.linq using system.text using system.io namespac...

讀取INI檔案

讀取ini檔案 ini ini new ini using system using system.text using system.runtime.interopservices namespace qf public string path 引用動態連線庫方法 dllimport kernel...