Wednesday 15 February 2012

c# - Look at decompiled source and ran across byte* -



c# - Look at decompiled source and ran across byte* -

what in world byte*?

example code:

byte* numpointer = (byte*)0; byte* numpointer1 = (byte*)0; uint* numpointer2 = (uint*)0;

a byte * (same thing byte*) pointer byte variable. never utilize pointers in c#, why have never seen before.

more specifically, pointer variable holds memory location of variable.

regardless, don't worry unless planning go c++ or native language.

see msdn more info.

c# .net

No comments:

Post a Comment