top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How would you Read settings from app.config or web.config in C#?

0 votes
261 views
How would you Read settings from app.config or web.config in C#?
posted May 9, 2017 by Jdk

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

You'll need to add a reference to System.Configuration in your project's references folder.

You should definitely be using the ConfigurationManager over the obsolete ConfigurationSettings.

answer May 11, 2017 by Shivaranjini
...