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