读取配置文件的原理是什么
我在项目里添加一个App.config配置文件,里面的代码如下:<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
<add key="connectionstring" value="User ID=sa;Data Source=.;
Password=;Initial Catalog=test;Provider=SQLOLEDB.1;" />
<add key="TemplatePATH" value="Template" />
</appSettings>
</configuration>
我现在在窗体 Form1里面 如何去读取这个配置文件的属性呢,
我已经引用命名空间using System.Collections;
就打个比方去读取这个配置文件value的属性吧,谢谢.