<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0646</ErrorName>
  <Examples>
    <string>// cs0646.cs: Cannot specify the `DefaultMember' attribute on type containing an indexer
// Line : 8

using System;
using System.Reflection;

[DefaultMember ("Item")]
public class Foo {

	string bar;
	
	public static void Main ()
	{
		Console.WriteLine ("foo");
	}

	string this [int idx] {
		get {
			return "foo";
		}
		set {
			bar = value;
		}
	}
}
		
</string>
  </Examples>
</ErrorDocumentation>