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
Contrast System.String and System.Text.StringBuilder classes?
What can I create with c#?
When is a class declared as a class abstract?
What does void do in unity?
Is .net and c# the same?
What are the differences between value types and reference types?
in the nunit test framework, which attribute must adorn a test class in order for it to be picked up by the nunit gui?
How do you type a null character?
List out the differences between array and arraylist in c#?
How to open a new form on button click in Windows forms?
What are expressions c#?
What are the properties in c#?
What is a static in c#?
How are delegates chosen?
What is verbatim string?