Results 1 to 3 of 3

Thread: C# OverView

  1. #1

    Thread Starter
    Frenzied Member
    Join Date
    Sep 1999
    Location
    Phoenix, az
    Posts
    1,517

    C# OverView

    MAIN FEATURES OF C#

    SIMPLE

    1. Pointers are missing in C#.

    2. Unsafe operations such as direct memory manipulation are not allowed.

    3. In C# there is no usage of "::" or "->" operators.

    4. Since it`s on .NET, it inherits the features of automatic memory management and garbage collection.

    5. Varying ranges of the primitive types like Integer, Floats etc.

    6. Integer values of 0 and 1 are no longer accepted as Boolean values. Boolean values are pure true or false values in C# so no more errors of "="operator and "=="operator. "==" is used for comparison operation and "=" is used for assignment operation.
    Pointers are gone!!!! And You Direct Memory Access! That sucks!

    Pointers, Direct memory access... Those are the pure power of c++.. Alone with Operator Overloading, Function overloading..

    Can the latter 2 be done in C#?

  2. #2
    PowerPoster hellswraith's Avatar
    Join Date
    Jul 2002
    Location
    Washington St.
    Posts
    2,464
    Where did you get this crap from?!?

    You can overload operators and methods.
    You can use pointers if you want.

    Here is a link to read the truth:
    http://msdn.microsoft.com/library/de...harpspec_A.asp

  3. #3
    PowerPoster hellswraith's Avatar
    Join Date
    Jul 2002
    Location
    Washington St.
    Posts
    2,464
    And here is a link to do operator overloading:
    http://msdn.microsoft.com/library/de...harpspec_A.asp

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