views:

346

answers:

1

I'm trying to call the LumenWorks .csv file reading library from a C++/CLI application and having some issues. I've added a dependancy on LumenWorks.Framework.IO.dll but when I try to then use the library:

namespace MyNamespace
{
    using namespace Lumenworks::Framework::IO::Csv;

    // <My code definitions here>

}

I get a message that the compiler doesn't recognise 'Lumenworks'. Do I need to reference header files from the sources or is there a way to get the same information from the .dll?

+2  A: 

Maybe try "LumenWorks" (based on article on codeproject)? And add ; at the end of line.

Ravadre
Accepted: Rather embarrassingly, you're right. The missing ',' was a copy/paste issue posting on SO.. but you were right about the case sensitivity!
Jon Cage
Happens even to the best :).
Ravadre