After you return a value from a method, how do you use the value returned in another method?
public string methodname()
{
return stringname;
}
public string anothermethodna me()
{
//use return value from 1st method in this method + "endingprefixna me"
}
public string methodname()
{
return stringname;
}
public string anothermethodna me()
{
//use return value from 1st method in this method + "endingprefixna me"
}
Comment