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