[Mono-list] Mono's Coding Standard

Daniel Carrera dcarrera@math.toronto.edu
Thu, 25 Apr 2002 02:53:43 -0400 (EDT)


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.