国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學(xué)院 > 開發(fā)設(shè)計 > 正文

C# INI文件讀寫類

2019-11-08 01:27:10
字體:
供稿:網(wǎng)友
    public class Ini    {        // 聲明INI文件的寫操作函數(shù) WritePRivateProfileString()        [System.Runtime.InteropServices.DllImport("kernel32")]        private static extern long WritePrivateProfileString(string section, string key, string val, string filePath);        // 聲明INI文件的讀操作函數(shù) GetPrivateProfileString()        [System.Runtime.InteropServices.DllImport("kernel32")]        private static extern int GetPrivateProfileString(string section, string key, string def, System.Text.StringBuilder retVal, int size, string filePath);        private string sPath = null;        public Ini(string path)        {            this.sPath = path;        }        public void Writue(string section, string key, string value)        {            // section=配置節(jié),key=鍵名,value=鍵值,path=路徑            WritePrivateProfileString(section, key, value, sPath);        }        public string ReadValue(string section, string key)        {            // 每次從ini中讀取多少字節(jié)            System.Text.StringBuilder temp = new System.Text.StringBuilder(255);            // section=配置節(jié),key=鍵名,temp=上面,path=路徑            GetPrivateProfileString(section, key, "", temp, 255, sPath);            return temp.ToString();        }    }
發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 桦甸市| 隆回县| 余干县| 门源| 达州市| 黄冈市| 安多县| 长宁区| 木里| 湄潭县| 福贡县| 景谷| 五台县| 闵行区| 聊城市| 海安县| 崇文区| 白玉县| 福安市| 英山县| 贵港市| 榆树市| 镇江市| 永嘉县| 丰县| 郧西县| 石阡县| 南和县| 苗栗市| 贞丰县| 久治县| 石景山区| 潮安县| 万安县| 黄骅市| 鄄城县| 新巴尔虎右旗| 伊川县| 揭西县| 临海市| 五大连池市|