CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3

Thread: .Net Framework

  1. #1
    Join Date
    Jan 2009
    Posts
    9

    .Net Framework

    I wanted to know if making a program in Microsoft Visual C++ Express 2008 required the .Net Framework for it to run.

    I was talking to a friend of mine and he said he thought that all applications made with Microsoft's Express compilers, required the .Net Framework.

    Thanks

  2. #2
    Join Date
    Sep 2004
    Location
    Holland (land of the dope)
    Posts
    4,123

    Re: .Net Framework

    Simple console applications, basic API32 and MFC applications don't need the framework. The rest (C#, managed C++, etc... ) do need the framework.

  3. #3
    Join Date
    Mar 2002
    Location
    St. Petersburg, Florida, USA
    Posts
    12,125

    Re: .Net Framework

    Quote Originally Posted by Skizmo View Post
    Simple console applications, basic API32 and MFC applications don't need the framework. The rest (C#, managed C++, etc... ) do need the framework.
    Basically correct, but with one MAJOR (and unfortunately common) flaw.

    "Managed C++" [technically Managed Extensions for C++ ] is a language what was supported under .NET 1.1 (VS-2001,VS-2003)

    "C++/CLI" is a completely different languge that is supported with .NET 2.0,3.0,3.5 (and will be with 4.0).

    With Visual Studio 2005 (and later) you can develop C++/CLI application (which WILL require the .NET framework).
    TheCPUWizard is a registered trademark, all rights reserved. (If this post was helpful, please RATE it!)
    2008, 2009,2010
    In theory, there is no difference between theory and practice; in practice there is.

    * Join the fight, refuse to respond to posts that contain code outside of [code] ... [/code] tags. See here for instructions
    * How NOT to post a question here
    * Of course you read this carefully before you posted
    * Need homework help? Read this first

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured