Skip to content

Latest commit

 

History

History
57 lines (38 loc) · 1.53 KB

File metadata and controls

57 lines (38 loc) · 1.53 KB
title Delegates & events
description Delegates & events
keywords .NET, .NET Core
author BillWagner
manager wpickett
ms.date 06/20/2016
ms.topic article
ms.prod .net-core
ms.technology .net-core-technologies
ms.devlang dotnet
ms.assetid 4e80e053-8022-4987-a8a0-209caec0315d

Delegates & events

Note

This topic will be covered under the following articles:

<style type="text/css"> ol { list-style-type: upper-roman; } </style>
  1. Overview of Delegates

    This article covers an overview of delegates.

  2. System.Delegate and the delegate keyword

    This article covers the classes in the .NET Core Framework that support delegates and how that maps to the delegate keyword.

  3. Strongly Typed Delegates

    This article covers the types and techniques for using strongly typed delegates.

  4. Common Patterns for Delegates

    This article covers common practices for delegates.

  5. Overview of Events

    This article covers an overview of events in .NET.

  6. The .NET Event Pattern

    This article covers the standard event pattern in .NET.

  7. The Updated .NET Event Pattern

    This article covers several updates to the .NET event pattern in recent releases.

  8. Distinguishing Delegates from Events

    This article discusses how you should distinguish between using events and delegates in your designs.