Hi all
this is the method:
def Hello()=try{1}finally{2}
when I call this statement I get the output as 1;
Now when I change to statement to
def Hello()=try{return 1} finally{return 2}
I get the out put as 2
def Hello()=try{return 1}finally {return 2}
I get the output as 1
what might be reason?
Thanks,
Rajkumar Goel
Cricket on your mind? Visit the ultimate cricket website. Enter
http://beta.cricket.yahoo.com
[Non-text portions of this message have been removed]

