2010-04-26 53 views

回答

0

可你怎麼稱呼它使用refout

Object StringStuff = "Hello Word"; 
Object Out_Data = null; 
DoSomething(ref StringStuff, ref Out_Data); 
// or 
DoSomething(out StringStuff, out Out_Data); 

//I haven't use ADODB in a long while so convert this to whatever type is necessary 
ADODB.Recordset ar = (ADODB.Recordset)Out_Data;