How?s method overriding different from overloading?
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / maria jerom
Method overloading means same method name but different
parameters. Method overriding means same method name and
parameters also same. In method overloading method will
differentiate with parameters name and in method overriding
method will differentiate with method signature
Is This Answer Correct ? | 3 Yes | 1 No |
Is a c# interface the same as a c++ abstract class?
Is arraylist type safe in c#?
how many catch we can write in thye program?
What is default method in c#?
Why c# is called c sharp?
What is inumerable?
What is difference between an Structure and Class?
How can i Spawn a Thread
What is difference between continue and break in c#?
which datatype i have to use we i need dynamic size.for eg. empname .in first row it have only five chars.but next row it have 100 chars.
What are different properties provided by Object-oriented systems?
Explain boxing and unboxing in c#?