Difference between C++ and C#.net
Answer Posted / suryaprakash
c++:
1. C++ code usually compiles to assembly language.
2. will allow multiple inheritence. eg. allows a method to
be overriden many times in subclasses (derived classes).
C#:
1. C# by contrast compiles to Intermediate language (IL),
which has some similarities to java byte code.
2. supports inheritence, but not multiple, only 1 override
per method/function/
| Is This Answer Correct ? | 43 Yes | 11 No |
Post New Answer View All Answers
what is the difference between .dll and .exe
How long can loop recorders stay in?
What is a property c#?
What do you mean by jagged arrays in c#?
Between windows authentication and sql server authentication, which one is trusted and which one is untrusted?
Give an example of a ctype.
How does inheritance work in c#?
How do I link two windows forms in c#?
What does question mark mean in c#?
What is form feed in c#?
Can you pass parameters to destructors?
Is c# good for games?
What is session management in c#?
What is a lambda expression in c#?
What is the purpose of escape sequence?