how can i implement this Pseudocode without return in c#(because i want to use it in button event handler)?thanks
edited:
large_int example(large_int u,large_int v)
{
.
.
.////some codes
.
x=u divide 10^2;
w=v divide 10^2;
return example(x,w)///it means when example(x,w) returns, x replace with u and w replace with v
}