C # Read and write INI configuration file

Source: Internet
Author: User

Don't say more, on code

Using System.Runtime.InteropServices; 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); <summary>///Construction Method///</summary>///<param name= "INIPath" > File path </param> public Iniclass ( String INIPath) {INIPath = INIPath}///<summary>///write INI file///</summary>///<param name= "section" &G T; project name (such as [TypeName]) </param>///<param name= "key" > Key </param>///<param name= "value" > Value </ param> public void Iniwritevalue (string section,string key,string Value) {writeprivateprofilestring (Section,key, Value,this.inipath); ///<summary>///Read INI file///</summary>///<param name= "section" > Project name (e.g. [TypeName]) </param>/ <parAm Name= "key" > key </param> public string Inireadvalue (String section,string key) {StringBuilder temp = new Stringbu Ilder (500); int i = getprivateprofilestring (Section,key, "", Temp,500,this.inipath); Return temp. ToString (); ///<summary>///Verify file exists///</summary>///<returns> boolean value </returns> public bool Existinifile () {return file.exists (IniPath);}}

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.