CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Feb 2001
    Posts
    2,455

    System.Configuration

    I don't have this assembly in my .net???? I see System.configuration with lower case but no upper case?

    System.configuration version 2.0.0

    I am trying to get the connection string settings from the app.config. I have added a reference to the above and included the "using System.Configuration" to my class .cs file, but I don't see the System.Configuration.ConnectionStringSettings class. Are there different versions of this .net assembly????

    Any ideas?

    Mike B

  2. #2
    Join Date
    Mar 2004
    Location
    Prague, Czech Republic, EU
    Posts
    1,701

    Re: System.Configuration

    If you are able to add a reference to it, it is installed on you machine (it is standard part of Fx2.0). Try to type whole class name including namespaces, or try to access the setting via Settings class which is generated by VS is you edit Settings page of project's properties.
    • Make it run.
    • Make it right.
    • Make it fast.

    Don't hesitate to rate my post.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured