SpankySpanky
Programmer
Please forgive the trivial question, but I cannot work this out.
I want to be able to do the following:
dim A as integer
dim B as object = A
B=33
and I need A to become 33. In other words I want to tell B to be a pointer or reference to A so that when I assign to B then that changes A.
Is this possible in VB.NET? I would rather not go unmanaged if possible.
I want to be able to do the following:
dim A as integer
dim B as object = A
B=33
and I need A to become 33. In other words I want to tell B to be a pointer or reference to A so that when I assign to B then that changes A.
Is this possible in VB.NET? I would rather not go unmanaged if possible.