I have a dot net core application and I have to get the response from the C++ application. Also send the response back to C++ also.
In simple terms,
C++ -> C#
C# -> C++
I have gone through many links and got to know we can use DllImport in the C# application to access the Cpp methods. But DllImport and Named Pipeline are both the same or different?
If it is different, I want to access the C++ methods in the CSharp application using the Named pipeline.
Please suggest any links and clarify my doubts.
Thanks!