How?s method overriding different from overloading?

Answers were Sorted based on User's Feedback



How?s method overriding different from overloading?..

Answer / nitin kumar tomar

Overriding : different methods with the same name but
different Implimentation
Overloading : Several Methods with different signature but
the same name

Is This Answer Correct ?    4 Yes 1 No

How?s method overriding different from overloading?..

Answer / rajkamal

Method Overloading is :

using the same method name for different Purpose.

Method Overriding is :

Adding the Functionality to existing method Header.
Here We providing Method Defination.

Is This Answer Correct ?    3 Yes 0 No

How?s method overriding different from overloading?..

Answer / guest

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 ?    2 Yes 1 No

How?s method overriding different from overloading?..

Answer / chinju

overriding is used for redefining a method in diferent ways.
overloading depends on the method signature not prototype.
method signature
1.no: of parameters or type of parameters or sequance of
parameter
not the return type

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Sharp Interview Questions

Can we call server-side code (c# or vb.net code) from javascript?

0 Answers  


What is the difference between first and firstordefault?

0 Answers  


What's the difference between the debug class and trace class? Documentation looks the same.

0 Answers  


What does return do in for loop?

0 Answers  


What is garbage collection? How to force garbage collector to run?

0 Answers  






Explain static class members.

0 Answers  


Define multicast delegate in c#?

0 Answers  


What is yield c#?

0 Answers  


What are the ways to deploy an assembly?

3 Answers  


C# is case sensitive, what is mean by case sensitive

3 Answers  


Define delegate in c#?

0 Answers  


What is data reader in c#?

0 Answers  


Categories