Answer Posted / rahul shanbhag
Signature overloading is just method overloading where you have same function varying in sequence of parameters or type of parameters. In this case the return type may be the same or varying..
Parameterised polymorphism happens at class level where the paramenters passed to the constructor decides the type of the object. For ex in generic collections if you say List<int> would create a list with integer elements and List<string> would create List with string elements.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain the difference between abstract class and interface in .net?
What is an inheritance ?Give an example in which inheritance is used?
What is method and function in c#?
What is yield in c#?
What is base class in c#?
Can we inherit class that contains only one private constructor?
Explain nullable types in c#?
List down the reason behind the usage of c# language.
Explain About a class access specifiers and method access specifiers.
Describe an interface class?
Explain About remoting and web services. Difference between them
What exactly happens when we debug and build the program?
Is c# pass by value?
What is the difference between CONST and READONLY?
what is a static constructor?