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

test-xml-040.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 38c3d11f34be2779c5bc26f5d5c14c4ff565f5aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Compiler options: -doc:xml-040.xml -warnaserror -warn:4
using System.Collections;

/// <summary><see cref="IDictionary.this[object]" /></summary>
public class Test {
	static void Main () {
	}

	/// <summary> test indexer doc </summary>
	public string this [string name] {
		get { return null; }
	}
}