Pointer usage in C#, it must be in unsafe context
static unsafe void Main()
{
int i;
int[] array = { 11, 22, 33 };
// pointer pi has the address of variable i
int* pi = & i;
// ppi(addess of pi) < pi(addess of i) < i(0)
i = [...]