I currently have a C# DLL project in Visual Studio.NET, and I need to be able to use it in creating a C++ DLL. However, I can't seem to figure out how to include the C# library or file in C++ and then use it.
I've tried compiling the C# DLL, but I can't reference it in C#.
I've also tried to include the .cs file in C++. This seems to work since the namespace is coming up now, but I can't seem to use any of the actual functions in the C# file.
Please let me know. Thank you!