You must provide an initializer in a fixed statement declaration
You must declare and initialize the variable in a fixed statement.
The following sample generates CS0210:
public class Class { unsafe public static void Main() { fixed (int *i) { // CS0210 // try the following line instead // fixed (int *i = null) { } } }