• 大小: 1.06KB
    文件类型: .7z
    金币: 1
    下载: 0 次
    发布日期: 2021-02-24
  • 语言: C#
  • 标签: ini  Read  Write  

资源简介


资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;

namespace WindowsFormsApplication1
{
    public class iniReadWrite
    {
        /// 
        /// 写操作
        /// 

        /// 要写入的段落名
        /// 要写入的键,如果该key存在则覆盖写入
        /// key所对应的值
        /// INI文件的完整路径和文件名
        /// 
        [DllImport(“kernel32“)]
        public static extern long WritePrivateProfileString(string section
                                                            string key string val string filePath);


        /// 
        /// 读操作
        /// 

        /// 要读取的段落名
        /// 要读取的键
        /// 读取异常的情况下的缺省值

评论

共有 条评论