L Liu Guidong Jul 14, 2003 #1 how to use C# dll files in the C++.net?? Can anyone give me an example ?? regards, Liu Guidong
A Arild Bakken Jul 14, 2003 #2 You do it just like you would with any .NET class library: #using <pathtomydll.dll> Arild
J José Joye Jul 14, 2003 #3 Assuming this is a managed class, you can also - add your dll in the project reference - add "using namespace <your namespace>" at the top of the managed C++ file Jose
Assuming this is a managed class, you can also - add your dll in the project reference - add "using namespace <your namespace>" at the top of the managed C++ file Jose