07. Events
7.1 Postfix Events with Event and Prefix Handlers with On
Subscribable events or delegate list names should be postfixed with 'Event', and event handler names should be prefixed with
On
.MyDevice.JumpEvent.Subscribe(OnJump)
Was this helpful?