Thread: MSVC++ 6.0 or Visual Studio.NET?

  1. #1
    Registered User CompiledMonkey's Avatar
    Join Date
    Feb 2002
    Location
    Richmond, VA
    Posts
    438

    MSVC++ 6.0 or Visual Studio.NET?

    Does it matter which one I use to write C++?

  2. #2
    Registered User Cela's Avatar
    Join Date
    Jan 2003
    Posts
    362
    .NET, Visual Studio 6 had tons of errors and silly bugs that were fixed with .NET. Programming is hard enough without the compiler making it harder for you. :-)
    *Cela*

  3. #3
    Registered User CompiledMonkey's Avatar
    Join Date
    Feb 2002
    Location
    Richmond, VA
    Posts
    438
    Are you limited in any way by using .NET?

  4. #4
    Registered User Cela's Avatar
    Join Date
    Jan 2003
    Posts
    362
    >>Are you limited in any way by using .NET?
    The compiler has to conform to the standard or no one would use it. So if you use C++ like normal then you're not restricted at all.
    *Cela*

  5. #5
    Registered User CompiledMonkey's Avatar
    Join Date
    Feb 2002
    Location
    Richmond, VA
    Posts
    438
    The client doesn't need the .NET framework installed?

  6. #6
    Registered User Cela's Avatar
    Join Date
    Jan 2003
    Posts
    362
    Not unless you use .NET features in your program.
    *Cela*

  7. #7
    Registered User
    Join Date
    Sep 2002
    Posts
    1,640
    .NET has some major VC++ 6.0 fixes that alone that make it
    worth switching over for, Like problems with namespaces.

  8. #8
    Speedy5
    Guest
    There is no reason why you shouldn't go get .NET. Its the future, 6.0 is old (well not really). If you're a C++ programmer, which you most likely are, .NET is for you because you can choose (or mix) managed and unmanged code. Managed being the Managed Language Extensions which makes your C++ compile to .NET. Unmanaged is normal, native code.

    BTW:
    You can get the .NET compilers for FREE. Microsoft gives them to you. Go to their site, find the .NET Framework SDK (full: over 160 Mb) and download it. It contains all the compilers and tools you'll need, all accesible from command prompt. You can then make your own IDE to make things easier. But, I'd recommend going and buying VS.NET, its worth every penny and easier to use than any other IDE ever made.

    Oh yea, the .NET Framework end-user edition is only 20 Mb.

  9. #9
    Registered User
    Join Date
    Sep 2002
    Posts
    1,640
    One thing i should add is that .NET, at least the IDE, is much
    more heavier then 6.0. You'll need a strong harddrive and CPU.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. We Got _DEBUG Errors
    By Tonto in forum Windows Programming
    Replies: 5
    Last Post: 12-22-2006, 05:45 PM
  2. C++ std routines
    By siavoshkc in forum C++ Programming
    Replies: 33
    Last Post: 07-28-2006, 12:13 AM
  3. load gif into program
    By willc0de4food in forum Windows Programming
    Replies: 14
    Last Post: 01-11-2006, 10:43 AM
  4. Errors with including winsock 2 lib
    By gamingdl'er in forum C++ Programming
    Replies: 3
    Last Post: 12-05-2005, 08:13 PM
  5. Learning OpenGL
    By HQSneaker in forum C++ Programming
    Replies: 7
    Last Post: 08-06-2004, 08:57 AM