第一步:新建项目,在项目的App.config中配置信息:
第二步:添加配置有关的引用和命名空间:
第三步:在主程序中读取key,以及value;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Configuration;
namespace ConfigurationFile
{
class Program
{
static void Main(string[] args)
{
//遍历配置文件
foreach (string key in ConfigurationManager.AppSettings.AllKeys) //只能在固定的配置文件App.config中才能遍历到
{
Console.WriteLine(key);
Console.WriteLine(ConfigurationManager.AppSettings[key]); //通过键值对的方式读取值
}
//使用配置文件有什么好处呢?:可以在项目文件夹中的配置文件上修改配置信息,修改了输入,程序不用改动
Console.ReadLine();
}
}
}
第四步:运行结果:
如果要修改配置文件,添加或者删除,就项目文件夹下找到App.config文件修改,然后保存,程序中的App.config也会被修改。
使用配置文件有什么好处呢?
答:对一些变量的修改,不用动程序,只用动配置文件。即使是不懂程序的人,也能通过修改配置文件而让程序符合自己的预期要求。