Suppose I have:
unsafe {
byte* start = GetStartLocation();
int something = start[4];
}
What is 'something'? The value of the memory address 4 bytes down from start?
|
1
|
|
|
|
|
|
Say
then The fact that |
||||||||
|
|
|
|
||
|
|
|
|
The value of something is the byte value of offset 4 from start widened to an int type. It's equivalent to the following code
|
||
|
|