c#建立ini檔案、讀取值、修改值
呼叫方法:
int ibaudrate = inihelper.readconfig("com_setup
", "
波特率")
inihelper類:
1public
class
inihelper226
else
2730}31
32///
33///
寫配置檔案
34///
35///
36///
37///
38public
static
void writeconfig(string section, string key, string
value)
3944}45
46 inifile f = new
inifile(filename);
47f.writecontentvalue(section, key, value);48}
49 }
核心**:
publicclass
inifile
//////
寫入ini檔案
/// ///
節點名稱[如[typename]]
///鍵 ///
值 ///
檔案路徑
///[dllimport("
kernel32")]
private
static
extern
long writeprivateprofilestring(string section, string key, string val, string
filepath);
//////
讀取ini檔案
/// ///
節點名稱
///鍵 ///
值 ///
stringbulider物件
///位元組大小
///檔案路徑
///[dllimport("
kernel32")]
private
static
extern
int getprivateprofilestring(string section, string key, string def, stringbuilder retval, int size, string
filepath);
//////
寫入
/// ///
//////
public
void writecontentvalue(string section, string key, string
ivalue)
//////
讀取ini檔案中的內容方法
/// ///
鍵 ///
值 ///
public
string readcontentvalue(string section, string
key)
}
C 操作ini檔案
有時候在用c 開發時會需要在本地儲存一些簡單的資料或者配置資訊類的,此時會想起使用ini檔案去完成。下面是我自己寫的簡單的類 引用 using system.runtime.interopservices class cini function 寫入ini檔案 param 節點名稱 鍵 值 檔案路徑...
C 操作INI檔案
ini檔案格式如下 注釋 section key value 例如 我的ini檔案 log logpath c log 操作ini檔案的可以通過呼叫api函式來實現 具體 如下 using system using system.collections.generic using system.te...
c 操作ini檔案
原文 c 操作ini檔案 號右邊的就是關鍵字對應的值 value 其一般形式如下 section1 keyword1 value1 keyword2 value2 keyword3 value3 section2 keyword1 value1 keyword2 value2 class progr...