Perché Visual Basic.NET non ha l'operatore indirizzo di come C #? In C #, si può
int i = 123;
int* addr = &i;
Ma VB non ha controparti equivalenti. Sembra che dovrebbe essere importante.
UPDATE Poiché c'è un certo interesse, sto copiando la mia risposta a Strilanc di seguito.
The case I ran into didnt necessitate pointers by any means, but I was trying to trouble shoot a unit test that was failing and there was some confusion over whether or not an object being used at one point in the stack was the same object as an object several methods away.