C# 如何使用 INI 檔 |
答題得分者是:shunchia63
|
digitraveler
初階會員 發表:89 回覆:91 積分:46 註冊:2005-06-01 發送簡訊給我 |
找到一篇,但不知如何使用,請大家幫忙
using System; using System.IO; using System.Runtime.InteropServices; using System.Text; namespace fund { /// /// /// public class ClassIniFile { private string fileName; [DllImport("kernel32")] private static extern int GetPrivateProfileInt( string lpAppName, string lpKeyName, int nDefault, string lpFileName ); [DllImport("kernel32")] private static extern int GetPrivateProfileString( string lpAppName, string lpKeyName, string lpDefault, StringBuilder lpReturnedString, int nSize, string lpFileName ); [DllImport("kernel32")] private static extern bool WritePrivateProfileString( string lpAppName, string lpKeyName, string lpString, string lpFileName ); public ClassIniFile(string filename) { fileName=filename; } public int GetInt(string section,string key,int def) { return GetPrivateProfileInt(section,key,def,fileName); } public string GetString(string section,string key,string def) { StringBuilder temp = new StringBuilder(1024); GetPrivateProfileString(section,key,def,temp,1024,fileName); return temp.ToString(); } public void WriteInt(string section,string key,int iVal) { WritePrivateProfileString(section,key,iVal.ToString(),fileName); } public void WriteString(string section,string key,string strVal) { WritePrivateProfileString(section,key,strVal,fileName); } public void DelKey(string section,string key) { WritePrivateProfileString(section,key,null,fileName); } public void DelSection(string section) { WritePrivateProfileString(section,null,null,fileName); } } } |
shunchia63
高階會員 發表:26 回覆:141 積分:198 註冊:2007-05-22 發送簡訊給我 |
本站聲明 |
1. 本論壇為無營利行為之開放平台,所有文章都是由網友自行張貼,如牽涉到法律糾紛一切與本站無關。 2. 假如網友發表之內容涉及侵權,而損及您的利益,請立即通知版主刪除。 3. 請勿批評中華民國元首及政府或批評各政黨,是藍是綠本站無權干涉,但這裡不是政治性論壇! |