C # use and configuration of Porperties. Settings

Source: Internet
Author: User
Tags change settings

Define the configuration field in the settings. settings file. Define the scope of action as user, which can be changed during runtime, and applicatiion cannot be changed during runtime. The data grid view is convenient;

2. Read configuration values

Text1.text = properties. settings. default. fieldname;
// Fieldname is the field you define

3. Modify and save configurations

Properties. settings. default. fieldname = "server ";
Properties. settings. default. save (); // use the save method to save and change settings in properites.

The specific configuration is as follows:

 

Read configuration value

String straddress = properties. settings. default. address;

Modify and save configurations

Properties. settings. default. address = "address ";

Properties. settings. default. save (); // use the save method to save changes

Obtain the value based on the configuration name.

String straddress = properties. settings. default. properties ["address"]. defaultvalue

The address is case sensitive.

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.