谢谢哦,不过这个是读取App.config文件里面的值的,现在我已解决,不过不知道我的方法是否可行。现贴出来让大家给评评。
1、在app.config里面的内容:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
</configSections>
<connectionStrings>
<add name="jtgl.Properties.Settings.connstr" connectionString="Data Source=zdsoft;Initial Catalog=aaa;Persist Security Info=True;User ID=sa;Password=sa"
providerName="System.Data.SqlClient" />
</connectionStrings>
</configuration>
2、通过jtgl.Properties.Settings.Default["connstr"].ToString()来进行调用的。