I would like to know a little more about memory, and I could not find it from Google, please forgive me if this is a stupid question.
How is it that the following code, referring to memory address 0 (and up to 65535) in C #, will throw a NullReferenceException
byte * pointer = (byte *) 0;
byte test = * pointer;
Many thanks!
Terry source
share