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 CS0107

More than one protection modifier

Only one access modifier (public, private, protected, or internal) is allowed on a class member.

The following sample generates CS0107:

public class C {
   private internal void f() {   // CS0107, delete private or internal
   }
   public static int Main() {
      return 1;
   }
}