我有一个控制台应用程序,它将连接字符串作为参数。我将不得不在app.config中设置一个名称为“ConnectionString”且给定参数为sql connectionstring的ConnectionString。
谢谢答案。借助链接,我可以做到这一点:
最佳答案
忽略此答案并在下面查看....
是的-看看this。
这种方法可能是您所追求的
System.Configuration.ConfigurationManager.ConnectionStrings.Add(new ConnectionStringSettings("new name", "new string");
关于c# - 是否有可能(以及如何)在C#中在运行时将ConnectionString添加到app.config中?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1833151/