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;Last updated
Was this helpful?
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;Last updated
Was this helpful?