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

test-xml-069.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e5f1f2ec219d6b9eae10df9a3aff5ac1ddaf7086 (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
// Compiler options: -doc:xml-069.xml

using System;

namespace XmlComments
{
	/// <summary/>
	class Program
	{
		/// <summary/>
		private enum MyEnum
		{
			/// <summary>The first entry</summary>
			One,
		}

		/// <summary>
		/// <see cref="MyEnum.One"/>
		/// <see cref="Program.MyEnum.One"/>
		/// <see cref="XmlComments.Program.MyEnum.One"/>
		/// <see cref="F:XmlComments.Program.MyEnum.One"/>
		/// </summary>
		static void Main(string[] args)
		{
		}
	}
}