NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Compiler Error CS0210

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) {
      }
   }
}