• 创建与编辑ini文件的类


    public class INIClass { public string inipath; [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);

    /// /// 构造方法 /// ///文件路径

    public INIClass(string INIPath) { inipath = INIPath; }

    /// /// 写入INI文件 /// ///项目名称(如 [TypeName] ) ///键 ///值

    public void IniWriteValue(string Section, string Key, string Value) { WritePrivateProfileString(Section, Key, Value, this.inipath); }

    /// /// 读出INI文件 /// ///项目名称(如 [TypeName] ) ///键

    public string IniReadValue(string Section, string Key)

    { StringBuilder temp = new StringBuilder(500);

    int i = GetPrivateProfileString(Section, Key, "", temp, 500, this.inipath); return temp.ToString(); }

    /// /// 验证文件是否存在 /// /// 布尔值

    public bool ExistINIFile()

    { return File.Exists(inipath); }

    internal int IniReadValue()

    { throw new NotImplementedException(); }

    }

  • 相关阅读:
    Vue表单输入绑定(文本框和复选框)
    Vue登录方式的切换
    IDEA导包(以junit为例)
    反射相关类
    dom4j加载xml文件
    Vue购物车
    IDEA基本设置和快捷键大全
    react组件间的通信-父子通信,子父通信,兄弟通信
    react受控组件
    react中数据承载--props和state用法
  • 原文地址:https://www.cnblogs.com/clarklxr/p/7115825.html
Copyright © 2020-2023  润新知