下記の二つのAPI関数をImportしても検索できないようです
[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ファイルのセクションを取得する方法があります。
http://pinvoke.net/default.aspx/kernel32/GetPrivateProfileString.html
http://www.pinvoke.net/default.aspx/kernel32/GetPrivateProfileSection.html
http://www.pinvoke.net/default.aspx/kernel32/GetPrivateProfileSectionNames.html
--
----- Takeshi SHIGIHARA
cyg...@tka.att.ne.jp -----
うまい、早い、安い/2つだけ選べ--RFC1925.
ほんとうにありがとうございました。