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

Are structs faster than classes?

0 Answers  


Who benefits from ajax?

0 Answers  


Explain About the Sattilite Assembly in .Net Technology?

2 Answers   TCS,


Any problem found in vs.et

0 Answers   Digital GlobalSoft,


What is the use of console readkey ()?

0 Answers  






Which is the best language for desktop application?

0 Answers  


Advantages of c# over vb.net?

3 Answers   HCL, Syntel,


how to calculate multiple pdf files page count?

0 Answers  


What is private class in c#?

0 Answers  


What is default constructor in c#?

0 Answers  


What is the use of constructor in c# with example?

0 Answers  


What are the types of operator?

0 Answers  


Categories