I want to know returning value of FunctionY without assigning it to variable during debugging is it possible ???
public string FunctionX()
{
return FunctionY("some parameter");
}
public bool MainFunction()
{
if (FunctionX() == "Value")
return true;
else
return false;
}