<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0243</ErrorName>
  <Examples>
    <string>// CS0243: Conditional not valid on `MyClass.GetHashCode()' because it is an override method
// Line: 6

public class MyClass
{
	[System.Diagnostics.Conditional ("WOOHOO")]
	public override int GetHashCode ()
	{
		return base.GetHashCode ();
	}
}
</string>
    <string>// CS0243: Conditional not valid on `DerivedClass.Show()' because it is an override method
// Line: 10

class BaseClass {
        protected virtual void Show () {}
}

class DerivedClass: BaseClass {
        [System.Diagnostics.Conditional("DEBUG")] protected override void Show () {}
            
        static void Main () {}
}

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