a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
37 lines
461 B
C#
37 lines
461 B
C#
// Compiler options: -doc:xml-005.xml
|
|
using System;
|
|
|
|
namespace Testing
|
|
{
|
|
/// <summary>
|
|
/// comment for interface
|
|
/// </summary>
|
|
public interface InterfaceTest
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// incorrect markup comment for interface
|
|
/// </incorrect>
|
|
public interface InterfaceTest2
|
|
{
|
|
}
|
|
|
|
/**
|
|
<summary>
|
|
Java style comment for interface
|
|
</summary>
|
|
*/
|
|
public interface InterfaceTest3
|
|
{
|
|
}
|
|
|
|
public class Test
|
|
{
|
|
public static void Main ()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|