Say I have the following helper method
public int doTheSum(int num1, int num2)
{
return num1 + num2;
}
And this method
public int doSum(int num1, int num2)
{
return the answer from the helper method
}
So how do i get the method to return the result from the helper method