'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() { } }