Possible Duplicate:
‘Arrays as attribute arguments is not CLS-compliant’ warning, but no type information given

I have some code, which generates this warning in several places. I want to fix them, but I do not know where they are because the C# compiler does not report the line of the error (there is an open MS Connect issue for that).

Is there a tool, which can tell me where is the problematic code? IL level tool is fine, known the method name and declaring type is good enough.

link|improve this question

61% accept rate
Somehow, I have missed that one... – mark May 26 '10 at 12:43
I really don't see how the other question is of any help to you. – sixlettervariables May 27 '10 at 13:20
feedback

closed as exact duplicate by David Basarab, abatishchev, Ardman, Jeff Sternal, Graviton May 27 '10 at 6:57

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

2 Answers

I'd adopt the following process:

  • Identify the attributes that have arrays in their constructors (sophistication required to do this obviously depends on how many classes you have that derive from Attribute)
  • Use the Visual Studio "Find All References" option on the attribute class constructors to find the things that are decorated with the attribute using arrays.

The first part should be fairly easy if the attributes in question are defined in your solution.

If the attributes are from a dependency then you might have to use a regex search to find the places where such attributes are used.

link|improve this answer
feedback

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)]

link|improve this answer
I know why it happens. I am the one who marked the assembly as CLSCompliant(true) in the first place. I wish to fix all the non CLS compliant places, but having a hard time to find them all manually. – mark May 26 '10 at 12:45
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.