18 lines
223 B
C#
18 lines
223 B
C#
|
// Compiler options: -doc:xml-070.xml
|
||
|
|
||
|
/// <summary>
|
||
|
/// Test base <see cref="ToString"/>
|
||
|
/// </summary>
|
||
|
interface I
|
||
|
{
|
||
|
}
|
||
|
|
||
|
class X
|
||
|
{
|
||
|
/// <returns>
|
||
|
/// <see cref="void"/>
|
||
|
/// </returns>
|
||
|
public static void Main ()
|
||
|
{
|
||
|
}
|
||
|
}
|