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 CS0060

Inconsistent accessibility: base class 'class1' is less accessible than class 'class2'

A public construct must return a publicly accessible object.

The following sample generates CS0060:

class MyClass {
// try the following line instead
// public class MyClass {
}

public class MyClass2 : MyClass {   // CS0060
   public static void Main() {
   }
}