Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 274 Bytes

File metadata and controls

17 lines (12 loc) · 274 Bytes

Events

Prefix event methods with the prefix On.

BAD:

public static event CloseCallback Close;
public event Action Changed;

GOOD:

public static event CloseCallback OnClose;
publc event Action OnChanged;