I read the C++ version of this question but didn\'t really understand it.
Can someone please explain clearly if it can be done and how?
<--Return more statements like this you can --> public (int,string,etc) Sample( int a, int b) { //your code; return (a,b); }
You can receive code like
(c,d,etc) = Sample( 1,2);
I hope it works.