Linked Questions
10 questions linked to/from How to call C++ DLL in C#
0 votes
0 answers
175 views
call DLL developed in C/C++ by C#? [duplicate]
The program developed by C# was to get realtime data from server. The project I am working on is to do machine learning/signal processing on those data in realtime and finally give a decision. I ...
0 votes
0 answers
34 views
How to get profiler attached true in c# profiling? [duplicate]
How to call cpp functions with correct parameters from c# code while developing c# profiler Any help or comments are highly appreciable.
0 votes
1 answer
2k views
How to call C++ code, and the code it calls, from C#
TL;DR I have legacy c++ code which does stuff (sometimes returns stuff), calls other cpp code, but is not a full class/obj. This code I cannot alter. I am making fresh c# code which I am looking to ...
1 vote
1 answer
845 views
Inject dll into current process with C#
So my question is a bit different from the other ones posted on this website, in theory, the thing I'm looking for should be far simpler than an injector that injects DLLs into 'any' process. I have a ...
0 votes
1 answer
526 views
Using Hunspell with Unity (.net 2.0)
Hi is there somewhere solution for Hunspell for Unity(.net 2.0). I'm working on android platform. I tried to implement WeCantSpell.HuntSpell But i get problem with encoding : "Encoding name 'ISO8859-...
0 votes
0 answers
374 views
Using a c++ library in C#
Hi I am trying to implement an FEM software into C# to build a GUI around it. Unfortunately I am not a c++ programer and all my software runs in c#. I thought it would be quite easy to do that, but ...
-3 votes
1 answer
144 views
Writing .Net window application in C++
I have a task to do: I have to write a graphical (window) application in .Net which is going to read temperature from the three sensors (namely MCP9808, SI7051 and STS31-DIS) connected via MCP2221 I2C/...
0 votes
0 answers
239 views
How can I bind the functions of a native .dll that comes from C++ in my C# code? [unclear question]
I am working on a project where I write an application in C#. I want to use a .dll file and to bind the functions of it to my C# code. Does anybody has a step-by-step explanation how to do it? I am ...
0 votes
1 answer
207 views
Calling to a DLL which then calls back to an API
I am writing a robot simulation scenario. The robots a programmed in C and use calls to a special API. My plan is to compile the robot programs to a DLL and at the start of the simulation I'm going ...
-2 votes
1 answer
184 views
How to use a c++ dll in c# project
I have a C ++ source and I want to use it in my C# project. I created a DLL file from it. C++ source has dozens of .h and .cpp files, but I only need 4 methods. So I defined my methods this way. void ...