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