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

test-xml-029.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 76d90a96eae7646ff0a61721736e860dd78e6202 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// Compiler options: -doc:xml-029.xml
using System;

class Test1 {
	/// <summary>
	/// Some test documentation
	/// </summary>
	void Foo(){}

	public static void Main () {}
}

/// <summary>
/// Publicly available interface
/// </summary>
public interface ITest2 {

	/// <summary>
	/// Some test documentation
	/// </summary>
	void Foo();

	/// <summary>
	/// Some test documentation
	/// </summary>
	long Bar { get; }

	/// <summary>
	/// Some test documentation
	/// </summary>
	event EventHandler EventRaised;
}