// Compiler options: -doc:xml-005.xml
using System;
namespace Testing
{
///
/// comment for interface
///
public interface InterfaceTest
{
}
///
/// incorrect markup comment for interface
///
public interface InterfaceTest2
{
}
/**
Java style comment for interface
*/
public interface InterfaceTest3
{
}
public class Test
{
public static void Main ()
{
}
}
}