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 CS0644

'class1' can't derive class from special class 'class2'

Classes cannot explicitly derive from System.Enum or System.ValueType.

The following sample generates CS0644:

class MyClass : System.ValueType {   // CS0644
}