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
How to declares a two-dimensional array in C#?
What is different about switch statements in c#?
Can you call from an inherited constructor to a specific base constructor if both base class and an inheriting class has a number of overloaded constructors?
How many keyword present in C# language ?
What is the importance of closing an ado.net application?
What is difference between method overriding and method overloading?
Explain About a class access specifiers and method access specifiers.
Is cli same as the clr?
What do you mean by “finalize” and “finally” methods in c#?
What are the advantages of using delegates in c#?
Explain get and set accessor properties?
How to exclude a property from xml serialization?
How does c# achieve polymorphism?
Explain Constructor and destructor?
Does c# support #define for defining global constants?