24 lines
243 B
C#
24 lines
243 B
C#
|
// Compiler options: -doc:xml-020.xml
|
||
|
using System;
|
||
|
|
||
|
namespace Testing
|
||
|
{
|
||
|
public class Test
|
||
|
{
|
||
|
public static void Main ()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
/// comment for constructor
|
||
|
public Test ()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
/// comment for destructor
|
||
|
~Test ()
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|