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
Can u list some style properties of List Box?
What are the advantages of clr procedure over t-sql procedure?
How to move to a state-related codebase?
What is a partial class in c#?
What is the difference between class and namespace?
What are classes in c#?
How many dimensions can an array have?
Illustrate the process of code compilation in c#?
Okay, so an int is a value type, and a class is a reference type. How can int be derived from object?
C# called c sharp why?
Is c# difficult to learn?
Can we inherit a class with private constructor in c#?
what is the difference between interface and multiple interface?
Why can’t struct be used instead of class for storing entity?
What is Wrapper class in dot net?