31 lines
500 B
C#
Raw Permalink Normal View History

// Compiler options: -doc:xml-010.xml
using System;
namespace Testing
{
public class Test
{
/// <summary>
/// comment for const declaration
/// </summary>
const string Constant = "CONSTANT STRING";
/// <summary>
/// invalid comment for const declaration
/// </invalid>
const string Constant2 = "CONSTANT STRING";
/**
<summary>
Javaism comment for const declaration
</summary>
*/
const string Constant3 = "CONSTANT STRING";
public static void Main ()
{
}
}
}