Thread: .net

  1. #1
    Registered User
    Join Date
    Aug 2003
    Posts
    2

    .net

    Hi,

    I'm still working hard on learning c++ and I was wondering if it is necessary to upgrade to Microsoft's .net environnement.

    I'm using Visual C++ 6 at the moment.

    Thanks in adv.

  2. #2
    Registered User
    Join Date
    Aug 2003
    Posts
    44
    Not necessary, but that's what I'm currently using, and I'm very pleased with it.

    Microsoft puts out a very good book on MSVC++ .net called Microsoft Visual C++ .NET Step by Step. I got a copy on ebay for $10 and I learned a lot from it.
    Check out all my dimensions:
    Height, width, and for a limited time only... Depth!
    -sb

  3. #3
    Hardware Engineer
    Join Date
    Sep 2001
    Posts
    1,398

    NO!

    Unless there is some new feature that you need, there is no need to upgrade. (Although, I think I've heard that .net is more ANSI compilant.)

    I'm still using MSVC++ 5 at home, and I haven't felt the need to upgrade yet.

    Maybe when MS releases the next operating system (Longhorn?) you'll need a new compiler... maybe...

  4. #4
    Registered User
    Join Date
    May 2003
    Posts
    1,619
    .NET 2003 is a vastly superior compiler to anything before it. It's far more ANSI compliant; previous versions had huge problems. One example is that if new fails on older versions, it will NOT throw, it returns a null pointer. This happened even in 6.0 and I believe 7.0 as well. .NET 2003 (version 7.1) correctly throws std::bad_alloc unless you specify a nothrow version of new.

    Also missing on older versions is full template support, and support for covariant return types, as well as a smattering of other errors.

  5. #5
    Registered User
    Join Date
    Aug 2003
    Posts
    7
    Visual C++.NET support C++ better than VC6.0.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. migrate from .Net 2.0 to .Net 3.0
    By George2 in forum C# Programming
    Replies: 3
    Last Post: 07-25-2007, 04:07 AM
  2. Some .NET Distribution Stats
    By nickname_changed in forum C# Programming
    Replies: 2
    Last Post: 05-14-2005, 03:41 AM
  3. IE 6 status bar
    By DavidP in forum Tech Board
    Replies: 15
    Last Post: 10-23-2002, 05:31 PM
  4. .net
    By ygfperson in forum A Brief History of Cprogramming.com
    Replies: 18
    Last Post: 02-15-2002, 01:15 AM
  5. Visual J#
    By mfc2themax in forum A Brief History of Cprogramming.com
    Replies: 0
    Last Post: 10-08-2001, 02:41 PM