J
Joe
Hi all,
I think this is probably a simple one for any c# expert -
I would like to declare a variable say
int SomeIntVariable;
and also an array:
int[] SomeIntArray;
Now I would like to be able to assign an element of the array to the
variable - that is so that the array element and the variable occupy the
same address space. The idea is that when the variable is modified the array
element reflects the change and vice versa.
Thanks -
Joe
I think this is probably a simple one for any c# expert -
I would like to declare a variable say
int SomeIntVariable;
and also an array:
int[] SomeIntArray;
Now I would like to be able to assign an element of the array to the
variable - that is so that the array element and the variable occupy the
same address space. The idea is that when the variable is modified the array
element reflects the change and vice versa.
Thanks -
Joe