Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations sizbut on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

VC 6++ or VC .NET

Status
Not open for further replies.

diesirae

Programmer
May 20, 2003
18
AR
Hello. Can I program in any version of VC++.NET without usig .NET Framework? Or my only choice is to use VC++ 6?
If I make a prog in VC++.Net, do I MUST have to install the .NET Framework in the client?

Thanks in advance!!
 
You can use VC++.NET without using the .NET framework. I'm pretty sure you must have the .NET framework on your computer to use it, but you can write a normal Win32 program and send it to someone without the framework and it will work fine.
 
Yes, timmaway3141 is right.
Except for C++, all languages in Visual Studio.NET compile only to MSIL, and they require the .NET Framework to run.
Managed C++ is a major extension of the C++ environment.
Since all managed C++ classes are compiled to MSIL, the C++.NET can obviously be used to generate Framework -based code, but C++.NET is unique in that it also allows compiling directly to a machine-specific binary.
For building applications that don't require the Common Language RunTime (CLR) e.g. .NET Frameweork , C++.NET is the only way to go.
-obislavu-
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top