CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Aug 2010
    Posts
    39

    namespace does not exist

    Hi All!

    I downloaded some open source library for my C++/CLI project. Let me call it 'library'. It is written completely in C#. The library compiles and builds fine into some library.dll. The samples provided along with it work well also. The problem starts when I try to use this library for my project.

    I add a reference path in the project properties in Visual Studio 2008, pointing to this dll. It seems everything is fine now, as IntelliSence that pops up after :: or -> symbols presents all possible sub-namespaces, classes, data types, etc.
    Unfortunately, when I add
    Code:
    using namespace library;
    to my code, the compilation error appears that says "namespace with this name does not exist".
    What's wrong? I integrated lots of other open source libraries in my projects this way, and there had been no error so far.

    Please help. This library seems very useful for my project and I don't want to miss this chance. Thanks to all.

  2. #2
    Join Date
    Jul 2002
    Posts
    2,543

    Re: namespace does not exist

    Can you show some C# code using this library?

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