- Back to Home »
- C#.NET »
- C#.NET Method with arguments and return type
Posted by :
Sudhir Chekuri
Thursday, 31 December 2015
It is one of the method that contains both arguments and return type.
Example
public long add(int a,int b)
{
return a+b;
}
Example
public long add(int a,int b)
{
return a+b;
}