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
Define property in c#.net?
What are scriptable objects?
Explain more on CLR
What is sqladapter c#?
Why do we use hashtable in c#?
explain the features of static/shared classes.
What is lazy loading and eager loading in c#?
What is attribute and reflection in c#?
what is generics? can u explain 5 to 6 examples on generics that covers class,method,structure,list,delegates?
How do you declare a variable in c#?
Why is it not a good idea to use empty destructors?
What is the purpose of namespace?
What is array formula?
Why do we need private constructor in c#?
What is xml serializer?