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 CS0525

Interfaces cannot contain fields

An interface can contain methods and properties but not fields.

The following sample generates CS0525:

namespace x
{
   public interface clx
   {
      public int i;   // CS0525
   }
}