Name

CLSCompliantAttribute

Synopsis

This attribute indicates that a program element is compliant with the CLS. If you use non-CLS compliant classes (such as UInt32) in a class marked as compliant, the compiler generates a compliance warning.

By default, types without this attribute are not CLS-compliant unless they are contained in a CLS-compliant type or assembly. You can specifically mark non-CLS compliant members inside a CLS-compliant type using [CLSCompliantAttribute(false)].

public sealed class CLSCompliantAttribute : Attribute {
// Public Constructors
   public method CLSCompliantAttribute(bool isCompliant);  
// Public Instance Properties
   public field bool IsCompliant{get; } 
}

Hierarchy

ObjectAttributeCLSCompliantAttribute

Valid On

All

Get C# in a Nutshell now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.