2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / tests / xml-018.cs
1 // Compiler options: -doc:xml-018.xml
2 using System;
3
4 namespace Testing
5 {
6         public class Test
7         {
8                 public static void Main ()
9                 {
10                 }
11
12                 /// <summary>
13                 /// comment for indexer
14                 /// </summary>
15                 public string this [int i] {
16                         get { return null; }
17                 }
18
19                 /// <summary>
20                 /// comment for indexer
21                 /// </summary>
22                 public string this [string s] {
23                         get { return null; }
24                 }
25
26                 /// <summary>
27                 /// comment for indexer wit multiple parameters
28                 /// </summary>
29                 public string this [int i, Test t] {
30                         get { return null; }
31                 }
32
33         }
34 }
35