// Compiler options: -doc:xml-046.xml -warnaserror
///
public interface IExecutable {
///
void Execute ();
///
object Current {
get;
}
}
///
///
///
///
public class A : IExecutable {
static void Main () {
}
///
public void Execute () {
}
///
public object Current {
get { return null; }
}
}