Expand Minimize
0 out of 1 rated this helpful - Rate this topic

Compiler Warning (level 1) CS3003

Type of 'variable' is not CLS-compliant

A public, protected, or protected internal variable must be of a type that is compliant with the Common Language Specification (CLS). For more information on CLS Compliance, see Language Independence and Language-Independent Components.

The following example generates CS3003:

// CS3003.cs

[assembly:System.CLSCompliant(true)]
public class a
{
    public ushort a1;   // CS3003, public variable
    public static void Main()
    {
    }
}
Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.