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
What is inline function in c#?
What are the different types of delegates?
How we can create an array with non-default values?
list the steps in code compilation in c#?
What is difference between overloading and short circuiting?
How do you create partial methods?
What is the meaning of MSIL?
What is the difference between method overriding and method overloading?
Is overriding of a function possible in the same class?
What is global namespace in c#?
Explain the use of virtual, sealed, override, and abstract method?
Can we instantiate abstract class in c#?
When Should You Call The Garbage Collector In .net?
How do I download a program to my desktop?
Where do we use serialization in c#?