Skip to content
Advertisement

Accessing database connection string using app.config in C# winform

I can’t seem to be able to access the app.config database connection string in my c# winforms app.

app.config code

C# code:

When I try the C# code, I get a message:
Warning 1 ‘System.Configuration.ConfigurationSettings.AppSettings’ is obsolete: ‘ This method is obsolete, it has been replaced by System.Configuration!System.Configuration.ConfigurationManager.AppSettings’

However, when I try to use:

I get an error: Only assignment, call, increment, decrement, and new object expressions can be used as a statement

Advertisement

Answer

This is all you need:

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement