Can someone translate this to VB for me?
Public Event OnEvent(ByVal evnt As IrrlichtLime.Event) As BooleanCode:device.OnEvent += new IrrlichtDevice.EventHandler(device_OnEvent);
Member of IrrlichtLime.IrrlichtDevice
Printable View
Can someone translate this to VB for me?
Public Event OnEvent(ByVal evnt As IrrlichtLime.Event) As BooleanCode:device.OnEvent += new IrrlichtDevice.EventHandler(device_OnEvent);
Member of IrrlichtLime.IrrlichtDevice
The translation would be:
Where 'device_OnEvent' contains a valid EventHandler signature.Code:AddHandler device.OnEvent, AddressOf device_OnEvent
:d thanks!