Hi all,
How can we catch the return values if the function, which takes out parameters, is going to return more than one value in C#.
Ex: public int addparams(out int x,out int y)
{
Int someinteger;
//code
return someinteger ;
}
Requesting you all kindly plz find some time and tell me, Is this method returns more than one value,if so how can catch that return values.
Thanks in advance..
regards,
tirumala.
How can we catch the return values if the function, which takes out parameters, is going to return more than one value in C#.
Ex: public int addparams(out int x,out int y)
{
Int someinteger;
//code
return someinteger ;
}
Requesting you all kindly plz find some time and tell me, Is this method returns more than one value,if so how can catch that return values.
Thanks in advance..
regards,
tirumala.
Comment