"Smokey Grindle" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Is there a good explination of what would cause a CLS warrning in .NET 2.0
> out there anywhere? like list of reasons and examples of what cause an
> object or type to not be CLS complaint? thanks!
Google: cls+compliant
An example (c# although principles are the same)
http://www.devarticles.com/c/a/C-Sha...CLS-Compliant/
You can get rid of the warning with: <CLSCompliant(false)> _, or by making
the object CLS compliant

.
Robin.