日期:2014-05-19  浏览次数:20862 次

请教c#中特有的out在vc.net中没有该怎么代替
private   bool   Test(string   test1,out   string   test2,out   string   test3)
{
...
}
谢谢

------解决方案--------------------
void test( int** NVALUE )
{
*NVALUE = new int;
.....
}
int* n
test( &n )