What is overloading and how can this be done ?

Answers were Sorted based on User's Feedback



What is overloading and how can this be done ?..

Answer / rashid

Overloading is the process of call the same method with
different parameter types,diferent order of parameters with
in the class.Its also applicable for the constructor.

here i give some example

class sample
{
public void display()
{
Console.WriteLine("display :1");
}
public void display(int i,int j)
{
int s=0;
s = i+j;
Console.WriteLine("Result :"+s);
}
}

class Overload
{
public static void Main(string []args)
{
sample s = new sample();
s.display();
s.display(5,5);
}

Is This Answer Correct ?    5 Yes 0 No

What is overloading and how can this be done ?..

Answer / mahesh babu ummaneni

overloading is nothing but method name is same but perameters is different.
for example
class overloading
{
public void add(int x)
{
console.writeline("sum");
}
public void add(int x,int y)
{
console.writeline("THE SUM IS:"+(x+y));
}
}

Is This Answer Correct ?    1 Yes 0 No

What is overloading and how can this be done ?..

Answer / rajesh

the above one is absolutely right

Is This Answer Correct ?    0 Yes 0 No

What is overloading and how can this be done ?..

Answer / senthil kumar

Overloading is the process of call the same method with
different parameter types,diferent order of parameters with
in the class.Its also applicable for the constructor.

here i give some example

class sample
{
public void display()
{
Console.WriteLine("display :1");
}
public void (int i,int j)
{
int s=0;
s = i+j;
Console.WriteLine("Result :"+s);
}
}

class Overload
{
public static void Main(string []args)
{
sample s = new sample();
s.display();
s.display(5,5);
}
}

Is This Answer Correct ?    0 Yes 4 No

Post New Answer

More C Sharp Interview Questions

Why it's said that writing into .NET Application Configuration Files is a Bad Idea?

0 Answers   DELL,


Can we define a variable with the access modifier private in an interface?

7 Answers   IBM,


What is cls, cts and clr in net?

0 Answers  


How can you clean up objects holding resources from within the code?

4 Answers   Wipro,


Are c# destructors the same as c++ destructors?

0 Answers  






What is activator c#?

0 Answers  


What is class method?

0 Answers  


What is difference between .net and c#?

0 Answers  


How do you mark a method obsolete?

0 Answers  


What is Event - Delegate?

0 Answers  


What does char mean in c#?

0 Answers  


What is the Main difference between String and StringBuilder and why do we use StringBuilder.

15 Answers   Aditya, CTS, Siemens,


Categories