Basic Event Handling in C# | CodeGuru

Basic Event Handling in C#

To illustrate event handling, you will make a news service that notifies its subscribers when an event (new news) occurs. Subscribers can unsubscribe and subscribe at will. The Delegate The delegate lets the subscriber know what type method can be notified. Essentially, the news service says “In case of an event occurring, I’ll notify any […]

Written By
CodeGuru Staff
CodeGuru Staff
Jan 11, 2005
1 minute read
CodeGuru content and product recommendations are editorially independent. We may make money when you click on links to our partners. Learn More

To illustrate event handling, you will make a news service that notifies its subscribers when an event (new news) occurs. Subscribers can unsubscribe and subscribe at will.

The Delegate

The delegate lets the subscriber know what type method can be notified. Essentially, the news service says “In case of an event occurring, I’ll notify any registered method so long as it has the same signature as the delegate” and the subscriber says, “Okay, register this method.” The method could be in any class.

You will use the following classes:

  • NewsService: Notifies the subscribers when events (new news) occur.
  • Subscriber: Instances subscribe to the news service, indicating what method should be notified.
  • News: Instances of this class are the parameters passed from the news service to the registered method. Contrary to what most people seem to think, it does not have to inherit from EventAgs. Any parameters can be passed.
using System;

// The delegate indicates what types of methods can be notified of
// an event.
// The method(s) must have the same signature as the delegate.
public delegate void NewsDelegate(News news);

public class News
{
  public string news;
  public News(string news) {this.news=news;}
}

// This class notifies subscribers when the specified event occurs.
// In this case, the event is that newNews() is called.
public class NewsService
{
  // Must have the following format: public event delegateName
  // anyName
  public event NewsDelegate NewsEventSubscribers;

  public void newNews(string news)
  {
    Console.WriteLine("An event! New news.");
    // first check whether there are subscribers to this event
    if (NewsEventSubscribers !=null)
    {
      // This will send an instance of News to each subscriber of
      // local news
      NewsEventSubscribers(new News(news));
    }
  }
  public NewsService(){}
}

public class Subscriber
{
  public string name;
  NewsDelegate delNews;

  public void SubscribeNewsService(NewsService ns)
  {
    // Create a new NewsDelegate. Its parameter is the method to
    // notify when the event occurs. This method also may be in
    // another class, in which case the parameter is
    // InstanceOfSomeOtherClass.method.
    delNews=new NewsDelegate(WriteNews);
    // Register the delegate with the NewsService
    ns.NewsEventSubscribers +=delNews;
    Console.WriteLine(name + " subscribed to news.");
  }

  public void UnsubscribeNewsService(NewsService ns)
  {
    // unsubscribing
    ns.NewsEventSubscribers -=delNews;
    Console.WriteLine(name + " unsubscribed to news.");
  }

  // This method must have the same signature as
  // the delegate NewsDelegate declared above.
  public void WriteNews(News e)
  {
    Console.WriteLine(name + " received news: " + e.news);
   }

  public Subscriber(string name) {this.name=name;}
}

class MakeNews
{
  static void Main(string[] args)
  {
    NewsService ns=new NewsService();
    Subscriber julie=new Subscriber("Julie");
    julie.SubscribeNewsService(ns);
    Subscriber matthew=new Subscriber("Matthew");
    matthew.SubscribeNewsService(ns);
    ns.newNews("More money for schools.");
    julie.UnsubscribeNewsService(ns);
    ns.newNews("New mayor.");
   }
}

The output:

Julie subscribed to news.
Matthew subscribed to news.
An event! New news.
Julie received news: More money for schools.
Matthew received news: More money for schools.
Julie unsubscribed to news.
An event! New news.
Matthew received news: New mayor.
CodeGuru Logo

CodeGuru covers topics related to Microsoft-related software development, mobile development, database management, and web application programming. In addition to tutorials and how-tos that teach programmers how to code in Microsoft-related languages and frameworks like C# and .Net, we also publish articles on software development tools, the latest in developer news, and advice for project managers. Cloud services such as Microsoft Azure and database options including SQL Server and MSSQL are also frequently covered.

Property of TechnologyAdvice. © 2026 TechnologyAdvice. All Rights Reserved

Advertiser Disclosure: Some of the products that appear on this site are from companies from which TechnologyAdvice receives compensation. This compensation may impact how and where products appear on this site including, for example, the order in which they appear. TechnologyAdvice does not include all companies or all types of products available in the marketplace.