According to Mono's coding standard, where does the opening brace go for events? Is it like properties? (i.e. at the end of the declaration line). Is this the correct stub for an event: public event EventHandler ItemActivate { add { throw new NotImplementedException (); } remove { throw new NotImplementedException (); } } Thanks, Daniel.