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 CS1551

Indexers must have at least one parameter

An indexer that takes no arguments was declared.

The following sample generates CS1551:

public class MyClass {
   int intI;
   int this[] {   // CS1551
   // try the following line instead
   // int this[int i] {
      get {
         return intI;
      }
      set {
         intI = value;
      }
   }

   public static void Main() {
   }
}