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 boxing and unboxing.
Can struct have constructor c#?
What are events in C#?
What type of data type conversion happens when the compiler encounters the following code?
What is hierarchical inheritance in c#?
How to transpose multi-dimensional array?
What is the difference between arraylist and list in c#?
What are logical operators in c#?
What problem does Delegate Solve?
What is a multicast c# delegate?
What is a destructor in c#?
What is keywords in c#?
Can we write class inside a class in c#?
Explain boxing and unboxing in c#?
What is disconnected data architecture in c#?