vote up 2 vote down star

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?

flag

1 Answer

vote up 2 vote down check

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

link|flag
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 Sep 4 at 11:11
Happens even to the best :). – Ravadre Sep 4 at 11:15

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.