Delegate Naming Standard

  • Thread starter Thread starter xtopher.brandt
  • Start date Start date
X

xtopher.brandt

Does anybody have a good standard for naming delegates? That would be,
other than your run of the mill EventHandler. My problem is that the
name of the delegate, it's return type and instances of it usually end
up looking very similar. It gets very difficult to tell which is the
symbol of the delegate definition and which is symbol of the delegate
implementation.

My gut feeling is to prefix delegate definition symbols with
'delegate'. But this contravines the MS naming guidlines which say that
public identifiers should be Pascal cased.

Any thoughts would be appreciated.

Chris.
 
Something like that?
EventReturn EventFunction(EventArg e)

I don't think there guideline about proper name, you should be
imaginative.... ;-)

--
Regards,
Lloyd Dupont

NovaMind development team
NovaMind Software
Mind Mapping Software
<www.nova-mind.com>
 
Back
Top