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
How long will it take to learn c#?
Are tuples immutable c#?
What is a property c#?
What is the difference between mobile application and desktop application?
What is the difference between static and private constructor?
What is bit in c#?
What is a nullreferenceexception and how do I fix it?
What is default value of enum c#?
Can int be null c#?
What is the data type for bit in c#?
What is value c#?
What are the boolean data types in c#?
What is the difference between array and list in c#?
What is the compiler of c#?
Is list ienumerable c#?