From 4ad68996f3d04fd405aa9a58930bd561af494f0c Mon Sep 17 00:00:00 2001 From: Shaun Date: Tue, 18 Dec 2018 14:19:45 -0500 Subject: [PATCH] Add description of += being used to subscribe to an event --- docs/standard/delegates-lambdas.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/standard/delegates-lambdas.md b/docs/standard/delegates-lambdas.md index a3c463419560f..d9fcaa1b680da 100644 --- a/docs/standard/delegates-lambdas.md +++ b/docs/standard/delegates-lambdas.md @@ -149,6 +149,8 @@ public MainWindow() } ``` +The `+=` operator in this context is used to subscribe to an [event](../../docs/csharp/language-reference/keywords/event.md). For more information, see [How to: Subscribe to and Unsubscribe from Events](../../docs/csharp/programming-guide/events/how-to-subscribe-to-and-unsubscribe-from-events.md). + ## Further reading and resources * [Delegates](../../docs/csharp/programming-guide/delegates/index.md)