国产一级a片免费看高清,亚洲熟女中文字幕在线视频,黄三级高清在线播放,免费黄色视频在线看

打開APP
userphoto
未登錄

開通VIP,暢享免費電子書等14項超值服

開通VIP
讀寫ini文件

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;

namespace 讀寫ini文件
{
    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();

        }

 


    }
    class Program
    {
        static void Main(string[] args)
        {
            string Current;

            Current = Directory.GetCurrentDirectory();//獲取當前根目錄
            Console.WriteLine("Current directory {0}", Current);
            // 寫入ini
            Ini ini=new Ini(Current+"/config.ini");
            ini.Writue("Setting","key1","hello word!");
            ini.Writue("Setting","key2","hello ini!");
            ini.Writue("SettingImg", "Path", "IMG.Path");
            // 讀取ini
            string stemp = ini.ReadValue("Setting","key2");
            Console.WriteLine(stemp);

 

            Console.ReadKey();
        }
      
    }
}

本站僅提供存儲服務(wù),所有內(nèi)容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請點擊舉報。
打開APP,閱讀全文并永久保存 查看更多類似文章
猜你喜歡
類似文章
INI文件格式及其操作代碼
C#讀INI文件
Ini文件操作類
C# 讀寫Ini文件
step by step 之餐飲管理系統(tǒng)五(Util模塊)
C# 讀寫INI文件
更多類似文章 >>
生活服務(wù)
分享 收藏 導長圖 關(guān)注 下載文章
綁定賬號成功
后續(xù)可登錄賬號暢享VIP特權(quán)!
如果VIP功能使用有故障,
可點擊這里聯(lián)系客服!

聯(lián)系客服