You have declared a class like next:
[SomeAttribute(new string[] { "foo", "bar" })
class SomeClass { }
or have declared an attribute like next:
class SomeAttribute : Attribute
{
public SomeAttribute(string[] arr) { } // or another array
}
And all this is happening because your assembly is marked to be CLSCompliant:
[assembly:CLSCompliant(true)]
abatishchev
2010-05-26 12:35:34