// CS1570: XML documentation comment on `Testing.Test.PublicProperty2' is not well-formed XML markup (The 'summary' start tag on line 1 position 3 does not match the end tag of 'incorrect'. Line 3, position 4.)
// Line: 32
// Compiler options: -doc:dummy.xml -warn:1 -warnaserror
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 { }
}
}
}