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
Is it possible to inherit multiple interfaces?
I want to print "Hello" even before main() is executed. How will you achieve that?
How to Show Message box in Metro Style App?
Can you describe iuknown interface in short?
Are classes passed by reference in c#?
Enlist some of the properties of a thread class?
What is escape character in c#?
How do I create multifile assembly?
What is reflection in c#?
What are the commonly used i/o classes?
What is serialization in .net?
Do loops in c#?
Is goto statement supported in c#?
How long will it take to learn c#?
Can struct have constructor c#?