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 CS0650

Syntax error, bad array declarator. To declare a managed array the rank specifier precedes the variable's identifier

An array was declared incorrectly.

The following sample generates CS0650:

public class MyClass {
   public static void Main() {
      int myarray[2];   // CS0650
      // try the following lines instead
      // int[] myarray = new int[2] {1,2};
      // myarray[0] = 0;
   }
}