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 CS0181

Unknown attribute

An attribute was used that is neither a user-defined attribute nor a predefined attribute.

The following sample generates CS0181:

namespace x {
   [x]   // CS0181
   public class a {
      public static void Main() {
      }
   }
}