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 sqlcommandbuilder c#?
What is desktop application testing?
Can you declare a field readonly?
Can we create multiple constructors?
Give examples for reference types?
Is list ienumerable c#?
Is static class thread safe in c#?
Explain the difference between the system.array.copyto() and system.array.clone()?
Define delegate?
How you will create satellite assemblies?
What do you understand by 'access specifiers' in C#?
What I can do with c#?
What is the difference between console application and windows application?
What is the purpose of abstract class in c#?
What are the benefits of using generics in c#?