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
Define delay signing?
How does insertion sort work?
How do I make a dll in c#?
What happens if the inherited interfaces have conflicting method names?
How can you achieve run time polymorphism in C#?
What is javascriptserializer c#?
What is int32 in c#?
How do I start a program in c#?
Is datetime value type c#?
How to implement a singleton design pattern in c#?
Why do we use generics in c#?
What exception can an overridden method throw in comparison with the method it is overriding?
What Happens In Memory When You Box And Unbox A Value-type?
How do I create a new form in c#?
Is the following code legal?