top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

Define Function Overloading in C# .net ?

+1 vote
156 views

Hai Friends anybody say about Function Overloading in C#.net

posted Nov 19, 2014 by Balu

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

In Function overloading, n number of functions can be created for same class. But the signatures of each function should vary. For example

public class Employee 
{
public void Employee() 
{
}
public void Employee(String Name) 
{
}
}
answer Nov 19, 2014 by Manikandan J
...