请教c#中特有的out在vc.net中没有该如何代替

请教c#中特有的out在vc.net中没有该怎么代替privateboolTest(stringtest1,outstringtest2,outstringtest3)

请教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 )