How can you overload a method?

Answers were Sorted based on User's Feedback



How can you overload a method?..

Answer / rahul

Different parameter data types, different number of
parameters, different order of parameters.

Is This Answer Correct ?    4 Yes 0 No

How can you overload a method?..

Answer / nitin kumar

By using Different parameter Data type, Different Order of
parameters and different no of parameters

Is This Answer Correct ?    2 Yes 0 No

How can you overload a method?..

Answer / chandana

Method overloading are of two types: Compile-Time and Run
Time.

The compile time overloading is achieved by providing
different method signatures. Whereas, the runtime is
achieved by using the same method names for a hierarchy of
classes, (parent and child classes using the same method
signature); In this case, behavior of the method call is
decided at run time.

Is This Answer Correct ?    1 Yes 0 No

How can you overload a method?..

Answer / vibhu

When you overload a method, you must change the signature
(the name, number, or type of the parameters). You are
free, as well, to change the return type, but this is
optional. Changing only the return type does not overload
the method, and creating two methods with the same
signature but differing return types generates a compile
error.

Is This Answer Correct ?    1 Yes 0 No

How can you overload a method?..

Answer / rajkamal

Method Overload can be

1.Same Method Names with Different parameter Types
2.Same Method Names with Different No. Of Arguments

Is This Answer Correct ?    1 Yes 0 No

How can you overload a method?..

Answer / shadab

we can easily overload method in C#
this concept is called method overloading.

there are there ways to pass parameter in method
to perform overloading

1>number of parameter
2>Data types of parameter
3>sequence of parameter

for more details visit my blog
http://www.shadab-programminghelp.blogspot.com

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Sharp Interview Questions

What is a collection class in c#?

0 Answers  


Can we create instance for Abstract class?

28 Answers   HCL, Satyam, SoftSol, Wipro,


What is Garbage Collection in .Net?

0 Answers  


Is concurrent queue thread safe?

0 Answers  


How many classes are there in classification?

0 Answers  






code for arranging given number in possible permutation ways ex:123,321,312,132,231,213.

0 Answers  


What is routing in c#?

0 Answers  


Does constructor return any value in c#?

0 Answers  


What is the difference between string and stringbuilder in c#?

0 Answers  


Are structs value types or reference types?

0 Answers  


Is exe is machine dependent?

0 Answers  


What is a byte in c#?

0 Answers  


Categories