<?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>CS0582</ErrorName>
  <Examples>
    <string>// cs0582.cs: meth: Can not reference a type through an expression, try `test.meth' instead
// Line: 8

class test2 : test {
	int meth( bool b )
	{
		return 1;
		base.meth (true);
	}
}

abstract class test {
	public delegate void meth( bool b ) ;
} 
</string>
    <string>// cs0582.cs: Conditional not valid on interface members
// Line: 5

interface Interface {
        [System.Diagnostics.ConditionalAttribute("DEBUG")]
        void Method ();
}

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