View Poll Results: C++ or C#?

Voters
2. You may not vote on this poll
  • C++

    1 50.00%
  • C#

    1 50.00%

Thread: C++ versus C#

  1. #1
    Registered User
    Join Date
    Jan 2002
    Posts
    75

    C++ versus C#

    I hear that C# seems to be one of those new languages coming out that is supposed to "revolutionize" programming. I don't really like it. I like how C++ can slip into low-level features and still get as abstract as to have polymorphism and object-orientation. Yet C# seems to be a little more limited to the abstract domain (like Java).

    I know C++ can be used for many different types of applications well, but what about C#? In what areas does C# provide better support for? I don't see it as worth getting used to a new language if you can still program it in the old one with no substantial advantages. I hear the internet is one of those things, but I'm really fuzzy on how applications work online, etc.

  2. #2
    Registered User
    Join Date
    Aug 2001
    Posts
    15

    Lowas

    It's not C#(CSharp) it's Db(DFlat) !

  3. #3
    the hat of redundancy hat nvoigt's Avatar
    Join Date
    Aug 2001
    Location
    Hannover, Germany
    Posts
    3,130
    C# has very powerful RAD features, even better than Borland, and provides full UNICODE support for all classes.
    hth
    -nv

    She was so Blonde, she spent 20 minutes looking at the orange juice can because it said "Concentrate."

    When in doubt, read the FAQ.
    Then ask a smart question.

  4. #4
    Banned Troll_King's Avatar
    Join Date
    Oct 2001
    Posts
    1,784
    Regarding the C# advantages, it has full interoperability with the .NET Base Class Library (BCL). The .NET model will allow you to use webservices in your applications, it improves upon the operating system by allowing you to create stronger lower level applications which have security features introduced in the common language runtime. Everything is compiled to an intermediate language and there is cross language capability. It is a stronger application environment and much richer choice for building integrated applications with server and client across networks.

  5. #5
    Unregistered
    Guest
    do standard functions in C# provide better error trapping techniques?

  6. #6
    Registered User
    Join Date
    Jan 2002
    Posts
    12
    I believe that all the .NET languages have type safety. It won't let you overwrite a string or assign a larger or smaller number than the type range for the object. There are not functions, but every data type is an object and has associated methods. Even an integer is an object for example.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. std::string comparison versus int comparison
    By leeor_net in forum C++ Programming
    Replies: 3
    Last Post: 04-12-2009, 07:28 AM
  2. How do I do MergeSort versus QuickSort instead?
    By dxfist in forum C++ Programming
    Replies: 9
    Last Post: 03-06-2008, 12:12 PM
  3. Templates: VC++ versus C++ standard
    By manannan in forum C++ Programming
    Replies: 1
    Last Post: 09-08-2005, 06:37 AM
  4. Linked list versus malloc and realloc.
    By Bajanine in forum C Programming
    Replies: 2
    Last Post: 06-20-2005, 08:08 PM
  5. I know this has been brought up before... B.S. versus B.A. in c.s.
    By Terrance1 in forum A Brief History of Cprogramming.com
    Replies: 3
    Last Post: 05-15-2003, 12:28 AM