Unsafe C# Tutorial

The general form of a pointer variable declaration is

type* var-name; 
int* ip;
For a float pointer, use

float* fp;