[assembly: CLSCompliant(true)]
//CS3016: Arrays as attribute arguments is not CLS-compliant.
[ModuleExport(typeof(ModuleA), DependsOnModuleNames = new [] { "ModuleB" })]
public class ModuleA : IModule { }
The only thing I can think of is to mark the class as [CLSCompliant(false)]
, but I was wondering if there is a better way to get around this?
As a workaround you can implement your own CLS compliant
ModuleExportAttribute
which uses a comma separated list instead of an string array:Usage: