How?s method overriding different from overloading?
Answer Posted / venu gopal
When overriding, you change the method behavior for a
derived class. Overloading simply involves having a method
with the same name within the class.
Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
In howmany ways can you deploy an assembly?
What are the variables in c#?
What is tochararray in c#?
Is it possible to have different access modifiers on the get/set methods of a property?
What is the use of expression tree in c#?
How does split work in c#?
What is executescalar in c#?
What are synchronous and asynchronous operations?
Why linq is having select clause at the end?
I have 3 overloaded constructors in my class. In order to avoid making instance of the class do I need to make all constructors to private?
Explain about CTS?
What is a generic in c#?
What are the problem with .NET generics?
Explain manifest in c#.
If a.equals(b) is true then a.gethashcode & b.gethashcode must always return same hash code.