Search code examples
c#.net.net-3.5configurationmanager

Unable to use C# ConfigurationManager


I have the following code:

using System.Configuration;

namespace test
{
  public partial class MyService : ServiceBase
  {
    public  static ReadConnectionStrings()
    {                        
      ConnectionStringSettingsCollection connections =
          ConfigurationManager.ConnectionStrings;

However, it doesn’t recognise ConfigurationManager. I took this code directly from here

So I’m clearly missing something, but can’t identify what.


Solution

  • Do you have a reference to System.Configuration? It's not added to .NET projects by default.