using
system;
using
system.drawing;
using
system.collections;
using
system.componentmodel;
using
system.windows.forms;
using
system.io;
using
system.runtime.interopservices;
using
system.text;
//申明ini檔案的寫操作函式writeprivateprofilestring()
[dllimport(
"kernel32")]
private
static
extern
long
writeprivateprofilestring(
string
section,
string
key,
string
val,
string
filepath);
//申明ini檔案的讀操作函式getprivateprofilestring()
[dllimport(
"kernel32")]
private
static
extern
intgetprivateprofilestring(
string
section,
string
key,
string
def, stringbuilder retval,
intsize,
string
filepath);
private
void
readini_click(
object
sender, eventargs e)
...
C 讀寫INI檔案
inifile類 using system using system.io using system.runtime.interopservices 因為我們需要呼叫api函式,所以必須建立system.runtime.interopservices命名空間以提供可用於訪問 net 中的 com 物...
C 讀寫ini檔案
using system.text using system.runtime.interopservices dllimport kernel32 private static extern long writeprivateprofilestring string section,string k...
C 讀寫ini檔案
ini檔案一般用於儲存當前執行的程式或者一些臨時的配置屬性的檔案。也有時用於儲存一定的資料以便於臨時或者配置上的需要。文字格式如下 section1 name 用 括起來,其包含多個key keyname1 value1 格式是 key value。keyname2 value2 section2 ...