Beginner
C#
Q17 / 100
What is an event in C#?
Correct! Well done.
Incorrect.
The correct answer is B) A notification mechanism built on delegates allowing subscribers to respond to actions
B
Correct Answer
A notification mechanism built on delegates allowing subscribers to respond to actions
Explanation
Events use the event keyword with a delegate type. Subscribers use += to register handlers; -= to unsubscribe.
Progress
17/100