Mega Code Archive

 
Categories / C# Tutorial / Unsafe
 

C# Pointer Operators

Operator      Description &             returns a pointer that represents the memory address of the variable. *             to declare a variable to be a pointer of some type,                and to dereference the pointer value to get to the value of the variable pointed to by the pointer. ->            dereferencing and member access operator.