Answer Posted / jacintha
Overloading of methods permits a class, struct, or
interface to declare multiple methods with the same name,
provided their signatures are unique within that class,
struct, or interface.
Overloading of instance constructors permits a class or
struct to declare multiple instance constructors, provided
their signatures are unique within that class or struct.
Overloading of indexers permits a class, struct, or
interface to declare multiple indexers, provided their
signatures are unique within that class, struct, or
interface.
Overloading of operators permits a class or struct to
declare multiple operators with the same name, provided
their signatures are unique within that class or struct.
| Is This Answer Correct ? | 3 Yes | 3 No |
Post New Answer View All Answers
What is class sortedlist underneath?
What is data annotation in c#?
Can you declare struct members as protected?
Is c# difficult to learn?
What is console read in c#?
How do I run a cshtml file?
What is thread pooling?
What is c# and why it is used for?
What is an object and a class?
What is the data encapsulation?
Explain how to implement delegates in c#.net
What is var c#?
Which constructor is called first in c#?
Why are c# strings immutable?
What is the Signification of the "new " keyword in C#? example