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 CS0603

Class 'class' marked attribute does not have public access

The attribute attribute can only be applied to classes that are public.

The following sample generates CS0603:

[attribute]   // CS0603
internal class BadAccessOnAttributeClass {   // CS0603
   public static void Main() {
   }
}