|
-
Aug 30th, 2002, 04:25 PM
#1
Thread Starter
Frenzied Member
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#?
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|