// Compiler options: -doc:xml-006.xml
using System;
namespace Testing
{
///
/// comment for enum type
///
public enum EnumTest
{
Foo,
Bar,
}
///
/// comment for enum type
///
public enum EnumTest2
{
Foo,
Bar,
}
/**
Java style comment for enum type
*/
public enum EnumTest3
{
Foo,
Bar,
}
public class Test
{
public static void Main ()
{
}
}
}