O
Olaf Baeyens
I have another problem, maybe it is simple to fix.
I have this:
byte[] Test=new byte[100];
But I now want to have a second pointer Test2 to point to a location inside
this Test.
But with no copying.
Something like this.
byte[] Test2=&Test[66];
The intentions is that Test2[0] == Test[66]
I need this to find a record position inside a memory block that is a array
of bytes.
And I need this reference to modify the memory directly.
Any idea how to do this?
I have this:
byte[] Test=new byte[100];
But I now want to have a second pointer Test2 to point to a location inside
this Test.
But with no copying.
Something like this.
byte[] Test2=&Test[66];
The intentions is that Test2[0] == Test[66]
I need this to find a record position inside a memory block that is a array
of bytes.
And I need this reference to modify the memory directly.
Any idea how to do this?