General C# Question - GUI's

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • jbak
    New Member
    • Feb 2008
    • 1

    General C# Question - GUI's

    Hi,
    I would like to know what are some of the benefits of using C# vs C++ (MFC) specifically regarding creating GUI's. I've heard that it offers the ease of creating gui's that visual basic has offered developers for years, but I would like to know what specifically is more "easier" in C#? I've developed using MFC for many years, and at a first glance at C# GUI toolbox it looked pretty similar to what i've been used to and didn't find anything that is much different.

    Any help and pointers from the experts out here would be greatly appericated.

    Thanks
  • SammyB
    Recognized Expert Contributor
    • Mar 2007
    • 807

    #2
    If you've been using MFC for many years, then C# will probably just annoy you, but it keeps you from doing all of the "unsafe" things like pointers that you love, but that cause mere mortals to go crazy when they have to debug them. Eric Gunnerson probably says it better: http://blogs.msdn.com/ericgu/archive...26/360879.aspx

    HTH --Sam

    Comment

    • r035198x
      MVP
      • Sep 2006
      • 13225

      #3
      I would say that C# is cleaner.
      More formally
      • Automatic memory management
      • More syntactic constructs for classes, delegates e.t.c. You can define attributes and annotate types.

      Comment

      Working...