<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS0633</ErrorName>
  <Examples>
    <string>// cs0633-2.cs: The argument to the `System.Runtime.CompilerServices.IndexerNameAttribute' attribute must be a valid identifier
// Line: 5

public class MonthDays {
   [System.Runtime.CompilerServices.IndexerName ("")]
   public int this [int a] {
      get {
         return 0;
      }
   }

   public static void Main ()
   {
	int i = new MonthDays () [1];
   }
}


</string>
    <string>// cs0633-3.cs: The argument to the `System.Diagnostics.ConditionalAttribute' attribute must be a valid identifier
// Line: 8

using System;
using System.Diagnostics;

class TestClass {
	[Conditional ("UNDEFINED CONDITION")]
	static void ConditionalMethod ()
	{
	}
}


</string>
    <string>// CS0633: The argument to the `System.Runtime.CompilerServices.IndexerNameAttribute' attribute must be a valid identifier
// Line: 8

using System.Runtime.CompilerServices;

public class C
{
	[IndexerName ("class")]
	public string this [int i] {
		set { }
	}
}
</string>
    <string>// cs0633.cs: The argument to the `System.Runtime.CompilerServices.IndexerNameAttribute' attribute must be a valid identifier
// Line: 5

public class MonthDays {
   [System.Runtime.CompilerServices.IndexerName ("buggypo for you")]
   public int this [int a] {
      get {
         return 0;
      }
   }

   public static void Main ()
   {
	int i = new MonthDays () [1];
   }
}


</string>
  </Examples>
</ErrorDocumentation>