Hello,
Can we achieve function overloading with different different return type too?
public int WrapNumber(int i)
{
return i + 0;
}
public string WrapNumber(int i, int j)
{
return (i + j).ToString();
}
I heard that method overloading is same method name with different signature.
regards
krrish