<?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>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.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>