CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Join Date
    Oct 2002
    Location
    Torture chamber
    Posts
    132

    C# a replacement for C++

    With the advent of C# in business apps make me can't help but wonder if C# is a replacement of C++. It seems that C++ nowadays is mostly used to build new "scientific" apps in specialised fields whereas C# is more for IT and the like. Just like Java. I seek comments from all. Thank you
    end------------------------------
    Programmers aren't born, but are made from hardwork, effort and time.
    To be a good one, requires more effort and hardwork.
    Therefore N quality programmer = (N*hardwork)+(N*effort)+(N*time)

  2. #2
    Join Date
    Jul 2002
    Location
    .NET 2.0/.NET 3.0/.NET 3.5 VS2005/VS2008
    Posts
    284
    C# Is no replacement, you can still use C++ for your windows applications. This language has been designed for people that want the power of C++ but the easy to use coding from VB.NET

    C++ can now also make managed .NET apps. But the old fashion MFC and ATL apps are still supported. I think most C++ programmers still program in MFC.
    WM.

    What about weapons of mass construction?

  3. #3
    Join Date
    Sep 2000
    Location
    Indianapolis
    Posts
    6,758

    C# is not a replacement for C++

    More importantly, C++ is the only language in Visual Studio .NET that can create native applications for Windows. C#, as with Visual Basic .NET and the other .NET programming languages, all create programs that execute on the .NET Common Language Runtime (CLR). C++ can be used to create managed code that also runs on the CLR; however, the reason C++ will continue to be a viable, strong language is because it can also create native, Windows applications.

    Native applications have the potential to be faster among many other benefits.

    Brad!
    -----------------------------------------------
    Brad! Jones,
    Yowza Publishing
    LotsOfSoftware, LLC

    -----------------------------------------------

  4. #4
    Join Date
    Jul 2002
    Location
    .NET 2.0/.NET 3.0/.NET 3.5 VS2005/VS2008
    Posts
    284
    True, and if I'm not completely wrong you can also make assembly code with it. So designing drivers is still possible with C++.NET
    WM.

    What about weapons of mass construction?

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