// Compiler options: -doc:xml-018.xml
using System;
namespace Testing
{
public class Test
{
public static void Main ()
{
}
///
/// comment for indexer
///
public string this [int i] {
get { return null; }
}
///
/// comment for indexer
///
public string this [string s] {
get { return null; }
}
///
/// comment for indexer wit multiple parameters
///
public string this [int i, Test t] {
get { return null; }
}
}
}