Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-xml-020.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: da30bdf53f7b0e2e57ef6e36b45c6a64e3383d87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// 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 ()
		{
		}
	}
}