Change the value of variables in non-recursive methods

Ali P S

Member
Joined
Jul 26, 2014
Messages
5
e.g.
C#:
Expand Collapse Copy
void method(a, b, x, y)
{
    //how to do these:
    //x = a * b;
    //y = a / b;
}
 
Back
Top Bottom