To use C++ DLL in C#.
-
Could please someone tell me what are the pre requsites for a C++ dll to be used in C#. I am having problem in using C++ dll in my C# code.
Mujtaba
-
Could please someone tell me what are the pre requsites for a C++ dll to be used in C#. I am having problem in using C++ dll in my C# code.
Mujtaba
It needs to export something, either as a normal dll, or through COM or .NET. Perhaps if you gave us some details ?
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog
-
It needs to export something, either as a normal dll, or through COM or .NET. Perhaps if you gave us some details ?
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog
I want to use a normal dll that contains a simple class and I want to create an object of that class in my C# code.
Mujtaba
-
I want to use a normal dll that contains a simple class and I want to create an object of that class in my C# code.
Mujtaba
I'm not sure if you can do that, because I don't believe you can use p/invoke to export a class from a C++ dll. Why don't you want to use managed C++ ?
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog
-
I'm not sure if you can do that, because I don't believe you can use p/invoke to export a class from a C++ dll. Why don't you want to use managed C++ ?
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog
I am not having detailed concept of that but now I am starting managed C++. Could you give me any links about it?
Mujtaba
-
I am not having detailed concept of that but now I am starting managed C++. Could you give me any links about it?
Mujtaba
Nish has written heaps of articles about it, and has a blog as well, I'd read those.
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog
-
Nish has written heaps of articles about it, and has a blog as well, I'd read those.
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog
OK Thanx very much. So nice of you.
Mujtaba