// Compiler options: -doc:xml-013.xml using System; namespace Testing { public class Test { public static void Main () { } /// /// comment for public property /// public string PublicProperty { /// /// On public getter - no effect /// get { return null; } /// /// On public setter - no effect /// set { } } /// /// incorrect comment for public property /// public string PublicProperty2 { get { return null; } } /** Javadoc comment for public property */ public string PublicProperty3 { /** On public getter - no effect */ get { return null; } /** On public setter - no effect */ set { } } } }