C#配置文件操作类分享

C#配置文件操作类,供大家参考,具体内容如下

注意添加引用:System.Configuration;

using System; 
using System.Collections.Generic; 
using System.Text; 
using System.Configuration; 
 
namespace DotNet.Utilities.配置文件操作类 
{ 
 public class ConfigHelper_sufei 
 { 
  ///  
  /// 根据Key取Value值 
  ///  
  ///  
  public static string GetValue(string key) 
  { 
   return ConfigurationManager.AppSettings[key].ToString().Trim(); 
  } 
 
  ///  
  /// 根据Key修改Value 
  ///  
  /// 要修改的Key 
  /// 要修改为的值 
  public static void SetValue(string key, string value) 
  { 
   ConfigurationManager.AppSettings.Set(key, value); 
  } 
 
  ///  
  /// 添加新的Key ,Value键值对 
  ///  
  /// Key 
  /// Value 
  public static void Add(string key, string value) 
  { 
   ConfigurationManager.AppSettings.Add(key, value); 
  } 
 
  ///  
  /// 根据Key删除项 
  ///  
  /// Key 
  public static void Remove(string key) 
  { 
   ConfigurationManager.AppSettings.Remove(key); 
  } 
 } 
} 

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

你可能感兴趣的:(C#配置文件操作类分享)