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 CS0225

The params parameter must be a single dimensional array

When using the params keyword, you must specify a single-dimensional array of the data type.

The following sample generates CS0225:

public class MyClass {
   public static void TestParams(params int a) {   // CS0225
   // try the following line instead
   // public static void TestParams(params int[] a) {
   }
   public static void Main() {
      TestParams(1);
   }
}