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 CS0638

'string' : unknown global attribute

A string appeared in the position of a global attribute but the string was not a valid global attribute.

The following sample generates CS0638:

using System;
using System.Interop;

[abc : InterfaceType()]   // CS0638, abc is not a global attribute
class MyClass {
   public static void Main() {
   }
}