on the outs 
Author Message
 on the outs

Is there a keyword in VB.Net that corrisponds with C#'s out?
public static int TestOut(out char i)
   {
      i = 'b';
      return -1;
   }

So that more than one variable can be "passed back" to the calling function?

Thanks
Chad



Thu, 15 Sep 2005 07:02:08 GMT  
 on the outs
Pass parameter Byref

Public shared function TestOut(ByRef i as Char) as Int32
End Function

--
Corrado Cavalli [Microsoft MVP]
UGIdotNET - http://www.ugidotnet.org



Thu, 15 Sep 2005 07:09:21 GMT  
 
 [ 2 post ] 

 Relevant Pages 

1. university EMR send outs

2. Learning the ins and outs of Peek and Poke

3. How to handle print outs in VB?

4. Filesystem Time outs

5. Session Variable Time-outs

6. Time-outs

7. Need help with time outs

 

 
Powered by phpBB® Forum Software