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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Question about C programming with .NET platform

Status
Not open for further replies.

advers

Programmer
Oct 15, 2005
2
BA
I need to write some classic C code in Visual Studio. As I have to write it
using Visual C++.net, I guess it will be translated to MSIL and later run
in .NET CLR.

Can I still make ordinary framework-independent object code and how?
Perhaps some compiler switches?
 
Despite the name, Visual C++ .NET is not just for .NET. It still has the classic C compiler, and when you compile an ordinary C application it will be just that - an ordinary application. It won't be translated or run under the .NET CLR.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top