Question:You need to write a multicast delegate that accepts a DateTime argument. Which code segment should you use?
A Public Delegate Function PowerDeviceOn( _ ByVal autoPowerOff As DateTime) _ As Boolean
B Public Delegate Sub PowerDeviceOn( _ ByVal autoPowerOff As DateTime)
C Public Delegate Function PowerDeviceOn( _ ByVal result As Boolean, _ ByVal autoPowerOff As DateTime) _ As Integer
D Public Delegate Function PowerDeviceOn( _ ByVal sender As Object, _ ByVal autoPowerOff As EventArgs) _ As Boolean
+ AnswerB
+ Report