I am working on a neural network project that requires me to work with C ++. I work with the Flood Neural Network library . I am trying to use a neural network library in an unmanaged C ++ project that I am developing. My goal is to create an instance of a class object inside the Flood library from another project.
There is a lot of documentation on the Internet on how to reference an unmanaged C ++ project from a C # project, but there is not enough information on how to reference one C ++ project in another. Like I did this in C #, I added the Flood project as a reference in my other project, but I tried all kinds of methods for working with the object. I tried using the #include directive to refer to the header file, but this gives me errors stating that I need to implement the methods declared in the header file.
How to add a link to unmanaged C ++ and work with class objects?
source
share