请教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 )
发布时间: 2011-12-20 22:26:40 作者: rapoo
请教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 )