Nice video. Thanks for making it. It was exactly the problem I was trying to learn more about. I hope you post more videos about Visio Studio and C++.
@EndlessRain866 ай бұрын
Thank you for the video lecture. I have been same problem "... entry point.. error..." but now solved the problem for your video lecture.! Thank you!
@TEAMPHY6 Жыл бұрын
Nice job, worked the first time. Did have to clean the solution and rebuild it once, to get the DLL to appear in the folder.
@jossuemedina90732 жыл бұрын
Very helpful exactly what i needed, thank you.
@anilkumarmootha3738Ай бұрын
I created a c++ dll as per your video and when I try to add C++ dll in Visual Studio 2022 C# console App I get the following error "The reference is invalid or unsupported".
@qtix45442 жыл бұрын
Thanks so much buddy! this helped me a lot!
@wiarale2 жыл бұрын
Thanks for your video. I have one problem when trying to run c# project. Visual Studio throws NullReferenceExeption when I am running function that uses IntPtr as parameter. How I can solve this?
@brucelee642410 ай бұрын
Thank you. Good Tip!
@AbhishekBade13106 ай бұрын
i want to make a dll in cpp with libmodbus library and then use that dll in c#. can you please tell me how i can integrate libmodbus into a dll successfuy and use that in c#
@emmasmith71803 жыл бұрын
thank you for the tutorial! very helpful :-)
@wochuoman92482 жыл бұрын
good video
@ilanbitan87643 жыл бұрын
ahla sirton! :)
@Chinnurockbells2 жыл бұрын
Thank you
@25dcb Жыл бұрын
Good video but the whole process seems so inefficient. Why not just rewrite the .dll in the language you are using?
@rothutheo2 жыл бұрын
But Why , When you can write everything in C#. Why using C++.
@DiegoSynth2 жыл бұрын
Because sometimes you need to write embedded software, which can only be done in C/C++, and you need to test it with a graphical interface that will later be developed as hardware. But even though this video is really good, the method is nowadays unfortunately a no go for many case scenarios.
@yourmomlikesmyd2 жыл бұрын
@@DiegoSynth Can you give some example why this is no go nowdays? I'm currently planning exactly what you are described above.
@DiegoSynth2 жыл бұрын
@@yourmomlikesmyd In my case, I have a system with many classes organized in several packages. So I would have to re declare all their methods one by one as function calls and somehow try to group them to keep an order. But you mainly lose the Object Oriented idea with this. And you are rewriting what you previously did in your .h files. This is a legacy ancient way of doing it. The issue is that they have never invested time in building a more modern way. So I ended up building a text based interface in C++ which actually works quite good! My interface is anyway only for testing, as my code will be embedded in hardware in the end.