Possible Duplicate:
Possible to call C++ code from C#?
Many years ago I did develp in C++ using Visual Studio 6. Nowdays, I should writing a simple console application in order to call some dll function written in c++. Note that none of that functions are exposed in .NET world, so I cannot write any wrap, instead I just need to remeber something about c++.
The first thing I got in my mind is how to call (in .net, referencing) native dll. Is it accomplished simply by "using ddlFilePath" instruction?
Finally, but not less important, wich are essential differents between C++ console app created with Visual Studio 6 and C++ Console app created with Visual Studio 2010?