Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumC#events and observer patternSingle-choice MCQ

What is the practical effect of declaring an event with the 'event' keyword versus exposing a public delegate field?

public event Action OnTick; // (A) public Action OnTickField; // (B)