Link to home
Start Free TrialLog in
Avatar of Kranarna
Kranarna

asked on

MC C++ .NET

Can anyone tell me how to create MC C++ .NET projcet? Is it managed C++ or what is it?
Avatar of AlexFM
AlexFM

What Visual Studio version do you have?
In Visual Studio versions 7.0, 7.1 and 8.0, it is possible to create both unmanaged or managed C++ projects.
Unmanaged projects are actually good old C++, like in VC++ 6.0.
Managed projects require .NET Framework, managed C++ provides managed executable like C# or VB .NET, but has different syntax.

When you create new C++ project using VS Application Wizard, you can select managed or unmanaged project type from the list.
Avatar of Kranarna

ASKER

Im using Visual Studio 8.0.
When I select new Project and get to choose type, how do I know if its a managed projects or not, I can't find that info?
ASKER CERTIFIED SOLUTION
Avatar of AlexFM
AlexFM

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Ok, thank you very much!