// using System; [assembly: CLSCompliant(true)] public class Person { private UInt16 personAge = 0; public UInt16 Age { get { return personAge; } } } // The attempt to compile the example displays the following compiler warning: // Public1.cs(10,18): warning CS3003: Type of 'Person.Age' is not CLS-compliant //