0
0
C Sharp (C#)programming~10 mins

Event declaration syntax in C Sharp (C#) - Step-by-Step Execution

Choose your learning style9 modes available
Concept Flow - Event declaration syntax
Declare delegate type
Declare event using delegate
Subscribe method to event
Raise event to call subscribed methods
End
This flow shows how to declare a delegate type, then declare an event using that delegate, subscribe methods to the event, and finally raise the event to call those methods.
Execution Sample
C Sharp (C#)
public delegate void Notify();
public class Process {
  public event Notify ProcessCompleted;
  public void Start() {
    ProcessCompleted?.Invoke();
  }
}
Declares a delegate, an event using that delegate, and raises the event inside a method.
Execution Table
StepActionEvaluationResult
1Declare delegate NotifyDefines a delegate type with no parametersDelegate type Notify created
2Declare event ProcessCompleted of type NotifyEvent is declared but no subscribers yetEvent ProcessCompleted created, empty subscriber list
3Subscribe method Handler1 to ProcessCompletedAdds Handler1 to subscriber listProcessCompleted subscribers: [Handler1]
4Call Start methodInside Start, ProcessCompleted?.Invoke() calledHandler1 method invoked
5Subscribe method Handler2 to ProcessCompletedAdds Handler2 to subscriber listProcessCompleted subscribers: [Handler1, Handler2]
6Call Start method againProcessCompleted?.Invoke() calls all subscribersHandler1 and Handler2 methods invoked
7Unsubscribe Handler1 from ProcessCompletedRemoves Handler1 from subscriber listProcessCompleted subscribers: [Handler2]
8Call Start method againOnly Handler2 invokedHandler2 method invoked
9EndNo more actionsExecution stops
💡 No more method calls; event raising stops
Variable Tracker
VariableStartAfter 3After 5After 7Final
ProcessCompleted subscribers[][Handler1][Handler1, Handler2][Handler2][Handler2]
Key Moments - 3 Insights
Why do we use a delegate before declaring an event?
The delegate defines the method signature that event handlers must follow. The event uses this delegate type to ensure only compatible methods can subscribe, as shown in step 1 and 2 of the execution_table.
What does the ?.Invoke() syntax mean when raising the event?
It safely calls the event only if there are subscribers. If no one subscribed, it prevents a null reference error. This is shown in step 4 where ProcessCompleted?.Invoke() is called.
Can multiple methods subscribe to the same event?
Yes, multiple methods can subscribe and all will be called when the event is raised. This is shown in steps 5 and 6 where Handler1 and Handler2 are both invoked.
Visual Quiz - 3 Questions
Test your understanding
Look at the execution_table at step 3, what is the state of ProcessCompleted subscribers?
A[]
B[Handler1]
C[Handler2]
D[Handler1, Handler2]
💡 Hint
Check the 'Result' column at step 3 in the execution_table.
At which step does the event have two subscribers?
AStep 5
BStep 7
CStep 3
DStep 8
💡 Hint
Look at the 'ProcessCompleted subscribers' in variable_tracker after step 5.
If we unsubscribe Handler2 at step 7 instead of Handler1, what would be the subscribers after step 7?
A[]
B[Handler2]
C[Handler1]
D[Handler1, Handler2]
💡 Hint
Refer to variable_tracker and imagine removing Handler2 instead of Handler1 at step 7.
Concept Snapshot
Event declaration in C#:
- Declare a delegate type for method signature.
- Declare an event using that delegate.
- Subscribe methods to the event.
- Raise event with ?.Invoke() to call subscribers safely.
- Multiple subscribers allowed; unsubscribing removes them.
Full Transcript
This visual execution shows how to declare and use events in C#. First, a delegate type is declared to define the method signature for event handlers. Then, an event is declared using this delegate type. Methods can subscribe to this event, adding themselves to the subscriber list. When the event is raised using ?.Invoke(), all subscribed methods are called. The execution table traces subscribing, raising, and unsubscribing steps, showing how the subscriber list changes. Key moments clarify why delegates are needed, the safe invocation syntax, and multiple subscriptions. The visual quiz tests understanding of subscriber states at different steps. The snapshot summarizes the event declaration syntax and usage in simple steps.