• 大小: 2.31KB
    文件类型: .cs
    金币: 1
    下载: 0 次
    发布日期: 2020-12-26
  • 语言: C#
  • 标签: 文件  

资源简介

适合各种config 以及自定义配置

资源截图

代码片段和文件信息

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

namespace Common
{
    /// 
    ///  读写xml类
    ///  适合各种config 以及自定义配置
    /// 

    public static class Global
    {
        /// 
        /// 保存xml
        /// 

        /// 
        /// 
        /// 
        public static bool SaveConfig(string key string value)
        {
            xmlDocument doc = new xmlDocument();
            //获得配置文件的全路径
            string strFileName = System.AppDomain.CurrentDomain.baseDirectory + “\\DLTiClient.exe.config“;

            //加载xml
            doc.Load(strFileName);

            //找出名称为“appSettings”的所有元素
            xmlNodeLis

评论

共有 条评论