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

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

namespace Testing
{
	public class Test
	{
		public static void Main ()
		{
		}

		/// <summary>
		/// comment for indexer
		/// </summary>
		public string this [int i] {
			get { return null; }
		}

		/// <summary>
		/// comment for indexer
		/// </summary>
		public string this [string s] {
			get { return null; }
		}

		/// <summary>
		/// comment for indexer wit multiple parameters
		/// </summary>
		public string this [int i, Test t] {
			get { return null; }
		}

	}
}