一段时间以来,我一直在研究 Visual Basic .NET 中的 C 样式指针。我遇到了http://support.microsoft.com/kb/199824 ?wa=wsignin1.0但我不知道这是否正确或如何应用它。我已经使用 c 中的程序编写了一个简单的指针,我希望它将逐行转换为 Visual Basic,并在必要时添加注释。这是C:
int main()
{
int *myNumber=3; //the * means it's a pointer
doubleIt(*myNumber); //we use the void, the * means it returns a value not address
printf("%d",myNumber); //we print the variable
return 0; //we terminate the function
}
void doubleIt(int input)
{
input*=2; //double the input
}