Violation of CLS rule Inherit from non CLSComplaint class
suggest changeusing System;
[assembly:CLSCompliant(true)]
namespace CLSDoc
{
[CLSCompliant(false)]
public class Animal
{
public int age = 0;
}
//Warning CS3009 'Dog': base type 'Animal' is not CLS-compliant
public class Dog : Animal
{
}
}
Found a mistake? Have a question or improvement idea?
Let me know.
Table Of Contents