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
Explain About CLS?
Can structs in c# have destructors?
How is lazy loading achieved?
Which is faster list or dictionary in c#?
Why do we use delegates in c#?
What is difference between ienumerable and ienumerator in c#?
What is the max value of int32 in c#?
What are the 2 broad classifications of data types available in c#?
What is regex replace in c#?
What is the difference between ref & out parameters in c#?
What is mvc firstordefault?
What is the default value of singleordefault?
What is an example of delegation?
What are the different types of classes in c#?
What is type keyword in c#?