I have a C# Class Library Project in Visual Studio 2015 that creates a C# DLL. I use this plugin for various Unity Projects.
There are some math related functions that I have written in Native C++, which I want to access in my above mentioned Class Library Project. Is it possible to create a C++ plugin for the Class Library Project, which will finally be built into the C# DLL?
If not, what are other ways to use C++ code inside a C# Class Library Project?
@Jonathon Reinhart, I do not think this is a duplicate because in your provided link the user is trying to use C++ in a C# executable project. I am trying to create a C# DLL that uses a C++ DLL and is trying to ask if this was possible, and how to do it.