C # configuration file operations,

Source: Internet
Author: User

C # configuration file operations,

Note: Add reference: System. Configuration;

Using System; using System. collections. generic; using System. text; using System. configuration; namespace DotNet. utilities. configuration file operation class {public class ConfigHelper_sufei {/// <summary> /// obtain the Value based on the Key /// </summary> /// <param name = "key"> </param> public static string GetValue (string key) {return ConfigurationManager. appSettings [key]. toString (). trim ();} /// <summary> /// modify Value based on Key /// </summary> /// <param name = "key"> Key to be modified </param>/ // <param name = "value"> value to be modified </param> public static void SetValue (string key, string value) {ConfigurationManager. appSettings. set (key, value) ;}/// <summary> /// Add a new Key, value key-value Pair /// </summary> /// <param name = "Key"> key </param> /// <param name = "Value"> Value </param> public static void Add (string key, string value) {ConfigurationManager. appSettings. add (key, value );} /// <summary> /// delete an item based on the Key /// </summary> /// <param name = "key"> Key </param> public static void Remove (string key) {ConfigurationManager. appSettings. remove (key );}}}
ConfigHelper

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.