Hello everybody,
I want to know the way of creating CLR based C++ managed DLL in MS Visual Studio 2008. Please inform me elaborately even with code(example).
I also wanna know how can I call the functions of that DLL from Windows C# application.
Redirect me to the appropriate link, if possible.
Thanks to all.
Comments
: I want to know the way of creating CLR based C++ managed DLL in
: MS Visual Studio 2008. Please inform me elaborately even with
: code(example).
:
: I also wanna know how can I call the functions of that DLL from
: Windows C# application.
: Redirect me to the appropriate link, if possible.
:
: Thanks to all.
:
IMO library wrote in C# you can call only in C# applications
: : I want to know the way of creating CLR based C++ managed DLL in
: : MS Visual Studio 2008. Please inform me elaborately even with
: : code(example).
: :
: : I also wanna know how can I call the functions of that DLL from
: : Windows C# application.
: : Redirect me to the appropriate link, if possible.
: :
: : Thanks to all.
: :
: IMO library wrote in C# you can call only in C# applications
:
:
CLR is design for multilanguages. Its libraries are fully can be used in many languages. I think you only need to add that DLL reference to your projects, and simply use it as other objects.
You can include this dll in a c# project by right-clicking on the c# project in the solution explorer, choosing Add Reference, and choosing your project from the Projects tab.