a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
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 ()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|